1
0
mirror of https://github.com/Wyrrrd/EpicArtillerySounds.git synced 2026-06-09 17:30:26 +02:00

3 Commits

Author SHA1 Message Date
Wyrrrd c3a5d1a38e Bigger artillery compat 2020-12-23 10:42:34 +01:00
Wyrrrd 8bc01fca19 Version bump for base game 1.1 2020-12-02 18:47:07 +01:00
Wyrrrd dd010556eb Update README.md
Matched format
2020-03-27 12:55:52 +01:00
5 changed files with 32 additions and 6 deletions
+3 -2
View File
@@ -7,8 +7,9 @@ Changes the vanilla artillery sound to a far more powerful, resonant one. Bring
### Compatibility
This mod should just work, but I specifically added compatibility for the following mods:
+ [Bigger Artillery](https://mods.factorio.com/mod/bigger-artillery) - also added (louder) sound to turret and wagon
+ [Light Artillery](https://mods.factorio.com/mod/lightArtillery) - also added sound to turret and wagon
### Credits
+ Thanks to [MadClown01](https://mods.factorio.com/user/MadClown01) for the [original mod](https://mods.factorio.com/mod/Epic-Artillery-Sounds).
+ Sound borrowed (then edited) from World of Tanks
Thanks to [MadClown01](https://mods.factorio.com/user/MadClown01) for the [original mod](https://mods.factorio.com/mod/Epic-Artillery-Sounds).
Sound borrowed (then edited) from World of Tanks
+10
View File
@@ -1,4 +1,14 @@
---------------------------------------------------------------------------------------------------
Version: 1.1.1
Date: 2020-12-23
Features:
- Added integration for Bigger Artillery
---------------------------------------------------------------------------------------------------
Version: 1.1.0
Date: 2020-12-02
Changes:
- Version bump for base game 1.1
---------------------------------------------------------------------------------------------------
Version: 0.18.1
Date: 2020-03-23
Features:
+1
View File
@@ -14,4 +14,5 @@ data.raw.gun["artillery-wagon-cannon"].attack_parameters.sound =
-- integrations
require("integrations.bigger-artillery.data")
require("integrations.lightArtillery.data")
+5 -4
View File
@@ -1,12 +1,13 @@
{
"name": "EpicArtillerySounds",
"version": "0.18.1",
"version": "1.1.1",
"title": "Epic Artillery Sounds",
"author": "Wyrrrd",
"factorio_version": "0.18",
"factorio_version": "1.1",
"dependencies": [
"base >= 0.18",
"? lightArtillery >= 0.2.7"
"base >= 1.1.0",
"? lightArtillery >= 0.5.20",
"? bigger-artillery >= 0.2.01"
],
"description": "Bring the thunder to Factorio"
}
+13
View File
@@ -0,0 +1,13 @@
if mods["bigger-artillery"] then
data.raw.item["big-artillery-turret"].sound =
{
filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg",
volume = 1.5
}
data.raw.gun["big-artillery-wagon-cannon"].attack_parameters.sound =
{
filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg",
volume = 1.5
}
end