mirror of
https://github.com/Wyrrrd/EpicArtillerySounds.git
synced 2026-06-09 17:30:26 +02:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c7ed6dbeba | |||
| 232c086bb2 | |||
| 795b439446 | |||
| bfeb8fd256 | |||
| 79ec2f398c | |||
| 98ac92d276 |
@@ -0,0 +1 @@
|
||||
*.zip
|
||||
@@ -1,11 +1,14 @@
|
||||
# EpicArtillerySounds
|
||||
# Epic Artillery Sounds
|
||||
<img src="https://raw.githubusercontent.com/Wyrrrd/EpicArtillerySounds/master/thumbnail.png" width="128" height="128">
|
||||
|
||||
(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.)
|
||||
### Features
|
||||
Changes the vanilla artillery sound to a far more powerful, resonant one. Bring the thunder to Factorio.
|
||||
|
||||
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
|
||||
### Compatibility
|
||||
This mod should just work, but I specifically added compatibility for the following mods:
|
||||
|
||||
Credit:
|
||||
- Thanks to [MadClown01](https://mods.factorio.com/user/MadClown01) for the [original mod](https://mods.factorio.com/mod/Epic-Artillery-Sounds).
|
||||
+ [Light Artillery](https://mods.factorio.com/mod/lightArtillery) - also added sound to turret and wagon
|
||||
|
||||
### Credits
|
||||
+ 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
|
||||
+11
-3
@@ -1,10 +1,18 @@
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.18.1
|
||||
Date: 2020-03-23
|
||||
Features:
|
||||
- Added integration for Light Artillery
|
||||
Changes:
|
||||
- Matched changelog file format to what Factorio expects
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.18.0
|
||||
Date: 20. 2. 2020
|
||||
Changes:
|
||||
- Ported to 0.18
|
||||
- Added changelog file
|
||||
- Added thumbnail
|
||||
- Renamed mod
|
||||
- Renamed mod for upload in mod portal
|
||||
- Matched versioning to Factorio versions
|
||||
---------------------------------------------------------------------------------------------------
|
||||
|
||||
Graphics:
|
||||
- Added thumbnail
|
||||
@@ -1,3 +1,5 @@
|
||||
-- data.lua
|
||||
|
||||
data.raw.item["artillery-turret"].sound =
|
||||
{
|
||||
filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg",
|
||||
@@ -8,4 +10,8 @@ data.raw.gun["artillery-wagon-cannon"].attack_parameters.sound =
|
||||
{
|
||||
filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg",
|
||||
volume = 1
|
||||
}
|
||||
}
|
||||
|
||||
-- integrations
|
||||
|
||||
require("integrations.lightArtillery.data")
|
||||
@@ -1,11 +1,12 @@
|
||||
{
|
||||
"name": "EpicArtillerySounds",
|
||||
"version": "0.18.0",
|
||||
"version": "0.18.1",
|
||||
"title": "Epic Artillery Sounds",
|
||||
"author": "Wyrrrd",
|
||||
"contact": "",
|
||||
"homepage": "",
|
||||
"factorio_version": "0.18",
|
||||
"dependencies": ["base >= 0.18"],
|
||||
"dependencies": [
|
||||
"base >= 0.18",
|
||||
"? lightArtillery >= 0.2.7"
|
||||
],
|
||||
"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