mirror of
https://github.com/Wyrrrd/EpicArtillerySounds.git
synced 2026-07-07 05:26:51 +02:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1894f0af28 | |||
| e05e2b592a | |||
| af82680ab9 | |||
| e5f6108f2a | |||
| 0669a0ffd3 |
@@ -1 +1,2 @@
|
|||||||
*.zip
|
*.zip
|
||||||
|
.vscode/*
|
||||||
|
|||||||
@@ -4,12 +4,6 @@
|
|||||||
### Features
|
### Features
|
||||||
Changes the vanilla artillery sound to a far more powerful, resonant one. Bring the thunder to Factorio.
|
Changes the vanilla artillery sound to a far more powerful, resonant one. Bring the thunder to Factorio.
|
||||||
|
|
||||||
### 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
|
### 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
|
||||||
|
|||||||
@@ -1,4 +1,21 @@
|
|||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.1.0
|
||||||
|
Date: 2026-07-02
|
||||||
|
Changes:
|
||||||
|
- Version bump for base game 2.1
|
||||||
|
- Drop integrations with "Light Artillery" and "Bigger Artillery", since both are not updated
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.0.1
|
||||||
|
Date: 2024-11-06
|
||||||
|
Features:
|
||||||
|
- Re-added integration for Light Artillery
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
|
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
|
Version: 1.1.1
|
||||||
Date: 2020-12-23
|
Date: 2020-12-23
|
||||||
Features:
|
Features:
|
||||||
|
|||||||
@@ -10,9 +10,4 @@ data.raw.gun["artillery-wagon-cannon"].attack_parameters.sound =
|
|||||||
{
|
{
|
||||||
filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg",
|
filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg",
|
||||||
volume = 1
|
volume = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
-- integrations
|
|
||||||
|
|
||||||
require("integrations.bigger-artillery.data")
|
|
||||||
require("integrations.lightArtillery.data")
|
|
||||||
@@ -1,13 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "EpicArtillerySounds",
|
"name": "EpicArtillerySounds",
|
||||||
"version": "1.1.1",
|
"version": "2.1.0",
|
||||||
"title": "Epic Artillery Sounds",
|
"title": "Epic Artillery Sounds",
|
||||||
"author": "Wyrrrd",
|
"author": "Wyrrrd",
|
||||||
"factorio_version": "1.1",
|
"factorio_version": "2.1",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"base >= 1.1.0",
|
"base >= 2.1.0"
|
||||||
"? lightArtillery >= 0.5.20",
|
|
||||||
"? bigger-artillery >= 0.2.01"
|
|
||||||
],
|
],
|
||||||
"description": "Bring the thunder to Factorio"
|
"description": "Bring the thunder to Factorio"
|
||||||
}
|
}
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
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
|
|
||||||
@@ -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
|
|
||||||
Reference in New Issue
Block a user