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

6 Commits

Author SHA1 Message Date
Wyrrrd af82680ab9 Update README.md 2024-10-26 23:27:48 +02:00
Wyrrrd e5f6108f2a Migration to 2.0 2024-10-26 23:22:15 +02:00
Wyrrrd 0669a0ffd3 Add vscode to gitignore 2023-12-21 10:37:35 +01:00
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
7 changed files with 38 additions and 21 deletions
+1
View File
@@ -1 +1,2 @@
*.zip *.zip
.vscode/*
+3 -3
View File
@@ -7,8 +7,8 @@ Changes the vanilla artillery sound to a far more powerful, resonant one. Bring
### Compatibility ### Compatibility
This mod should just work, but I specifically added compatibility for the following mods: This mod should just work, but I specifically added compatibility for the following mods:
+ [Light Artillery](https://mods.factorio.com/mod/lightArtillery) - also added sound to turret and wagon + [Bigger Artillery](https://mods.factorio.com/mod/bigger-artillery) - also added (louder) sound to turret and wagon
### Credits ### Credits
+ Thanks to [MadClown01](https://mods.factorio.com/user/MadClown01) for the [original mod](https://mods.factorio.com/mod/Epic-Artillery-Sounds). 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 Sound borrowed (then edited) from World of Tanks
+16
View File
@@ -1,4 +1,20 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 2.0.0
Date: 24-10-26
Changes:
- Version bump for base game 2.0
- Drop integration with "Light Artillery", since it is not updated
---------------------------------------------------------------------------------------------------
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 Version: 0.18.1
Date: 2020-03-23 Date: 2020-03-23
Features: Features:
+1 -1
View File
@@ -14,4 +14,4 @@ data.raw.gun["artillery-wagon-cannon"].attack_parameters.sound =
-- integrations -- integrations
require("integrations.lightArtillery.data") require("integrations.bigger-artillery.data")
+4 -4
View File
@@ -1,12 +1,12 @@
{ {
"name": "EpicArtillerySounds", "name": "EpicArtillerySounds",
"version": "0.18.1", "version": "2.0.0",
"title": "Epic Artillery Sounds", "title": "Epic Artillery Sounds",
"author": "Wyrrrd", "author": "Wyrrrd",
"factorio_version": "0.18", "factorio_version": "2.0",
"dependencies": [ "dependencies": [
"base >= 0.18", "base >= 2.0.0",
"? lightArtillery >= 0.2.7" "? bigger-artillery >= 0.7.1"
], ],
"description": "Bring the thunder to Factorio" "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
-13
View File
@@ -1,13 +0,0 @@
if mods["lightArtillery"] then
data.raw.item["derpy-artillery"].sound =
{
filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg",
volume = 1
}
data.raw.gun["derpy-artillery-gun"].attack_parameters.sound =
{
filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg",
volume = 1
}
end