mirror of
https://github.com/Wyrrrd/EpicArtillerySounds.git
synced 2026-04-23 22:23:18 +02:00
Bigger artillery compat
This commit is contained in:
@@ -7,6 +7,7 @@ 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
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 1.1.1
|
||||
Date: 2020-12-23
|
||||
Features:
|
||||
- Added integration for Bigger Artillery
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 1.1.0
|
||||
Date: 2020-12-02
|
||||
Changes:
|
||||
|
||||
@@ -14,4 +14,5 @@ data.raw.gun["artillery-wagon-cannon"].attack_parameters.sound =
|
||||
|
||||
-- integrations
|
||||
|
||||
require("integrations.bigger-artillery.data")
|
||||
require("integrations.lightArtillery.data")
|
||||
@@ -1,12 +1,13 @@
|
||||
{
|
||||
"name": "EpicArtillerySounds",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"title": "Epic Artillery Sounds",
|
||||
"author": "Wyrrrd",
|
||||
"factorio_version": "1.1",
|
||||
"dependencies": [
|
||||
"base >= 1.1.0",
|
||||
"? lightArtillery >= 0.2.7"
|
||||
"? lightArtillery >= 0.5.20",
|
||||
"? bigger-artillery >= 0.2.01"
|
||||
],
|
||||
"description": "Bring the thunder to Factorio"
|
||||
}
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user