diff --git a/README.md b/README.md new file mode 100644 index 0000000..9d0f051 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# EpicArtillerySounds +![mod thumbnail](https://raw.githubusercontent.com/Wyrrrd/EpicArtillerySounds/master/thumbnail.png) + +(Please note: This is a quick and dirty port to 0.18. As soon as the original is ported to 0.18, this will be removed.) + +Description +- Changes the vanilla artillery sound to a far more powerful, resonant one. Bring the thunder to Factorio. +- Sound borrowed (then edited) from World of Tanks + +Credit: +- Thanks to [MadClown01](https://mods.factorio.com/user/MadClown01) for the [original mod](https://mods.factorio.com/mod/Epic-Artillery-Sounds). diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 0000000..24f0982 --- /dev/null +++ b/changelog.txt @@ -0,0 +1,10 @@ +--------------------------------------------------------------------------------------------------- +Version: 0.18.0 +Date: 20. 2. 2020 + Changes: + - Ported to 0.18 + - Added changelog file + - Added thumbnail + - Renamed mod + - Matched versioning to Factorio versions +--------------------------------------------------------------------------------------------------- \ No newline at end of file diff --git a/data.lua b/data.lua new file mode 100644 index 0000000..e22cdcc --- /dev/null +++ b/data.lua @@ -0,0 +1,11 @@ +data.raw.item["artillery-turret"].sound = +{ + filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg", + volume = 1 +} + +data.raw.gun["artillery-wagon-cannon"].attack_parameters.sound = +{ + filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg", + volume = 1 +} \ No newline at end of file diff --git a/info.json b/info.json new file mode 100644 index 0000000..934354b --- /dev/null +++ b/info.json @@ -0,0 +1,11 @@ +{ + "name": "EpicArtillerySounds", + "version": "0.18.0", + "title": "Epic Artillery Sounds", + "author": "Wyrrrd", + "contact": "", + "homepage": "", + "factorio_version": "0.18", + "dependencies": ["base >= 0.18"], + "description": "Bring the thunder to Factorio" +} \ No newline at end of file diff --git a/sounds/KABOOM.ogg b/sounds/KABOOM.ogg new file mode 100644 index 0000000..e6b67d7 Binary files /dev/null and b/sounds/KABOOM.ogg differ diff --git a/thumbnail.png b/thumbnail.png new file mode 100644 index 0000000..45fb894 Binary files /dev/null and b/thumbnail.png differ