mirror of
https://github.com/Wyrrrd/EpicArtillerySounds.git
synced 2026-06-08 17:00:28 +02:00
Re-add lightArtillery integration
This commit is contained in:
@@ -8,6 +8,7 @@ Changes the vanilla artillery sound to a far more powerful, resonant one. Bring
|
|||||||
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:
|
||||||
|
|
||||||
+ [Bigger Artillery](https://mods.factorio.com/mod/bigger-artillery) - also added (louder) sound to turret and wagon
|
+ [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
|
### 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).
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.0.1
|
||||||
|
Date: 2024-11-06
|
||||||
|
Features:
|
||||||
|
- Re-added integration for Light Artillery
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 2.0.0
|
Version: 2.0.0
|
||||||
Date: 24-10-26
|
Date: 24-10-26
|
||||||
Changes:
|
Changes:
|
||||||
|
|||||||
@@ -14,4 +14,5 @@ data.raw.gun["artillery-wagon-cannon"].attack_parameters.sound =
|
|||||||
|
|
||||||
-- integrations
|
-- integrations
|
||||||
|
|
||||||
|
require("integrations.lightArtillery.data")
|
||||||
require("integrations.bigger-artillery.data")
|
require("integrations.bigger-artillery.data")
|
||||||
@@ -1,11 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "EpicArtillerySounds",
|
"name": "EpicArtillerySounds",
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"title": "Epic Artillery Sounds",
|
"title": "Epic Artillery Sounds",
|
||||||
"author": "Wyrrrd",
|
"author": "Wyrrrd",
|
||||||
"factorio_version": "2.0",
|
"factorio_version": "2.0",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"base >= 2.0.0",
|
"base >= 2.0.0",
|
||||||
|
"? lightArtillery >= 0.6.27",
|
||||||
"? bigger-artillery >= 0.7.1"
|
"? bigger-artillery >= 0.7.1"
|
||||||
],
|
],
|
||||||
"description": "Bring the thunder to Factorio"
|
"description": "Bring the thunder to Factorio"
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
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
|
||||||
Reference in New Issue
Block a user