2018-01-26 18:15:40 -08:00
|
|
|
-- import
|
|
|
|
|
2018-01-23 13:39:32 -08:00
|
|
|
local acidBall = require("prototypes/utils/AttackBall")
|
2018-01-26 18:15:40 -08:00
|
|
|
local colorUtils = require("prototypes/utils/ColorUtils")
|
|
|
|
local smokeUtils = require("SmokeUtils")
|
|
|
|
|
|
|
|
-- imported functions
|
|
|
|
|
|
|
|
local makeSmokeSoft = smokeUtils.makeSmokeSoft
|
|
|
|
local makeSmokeWithGlow = smokeUtils.makeSmokeWithGlow
|
|
|
|
local makeSmokeWithoutGlow = smokeUtils.makeSmokeWithoutGlow
|
|
|
|
local makeSmokeAddingFuel = smokeUtils.makeSmokeAddingFuel
|
|
|
|
|
|
|
|
local makeColor = colorUtils.makeColor
|
|
|
|
|
|
|
|
-- module code
|
|
|
|
|
|
|
|
makeSmokeSoft({name="the", softSmokeTint=makeColor(0.3, 0.75, 0.3, 0.1)})
|
|
|
|
makeSmokeWithGlow({name="the", smokeWithGlowTint=makeColor(0.3, 0.75, 0.3, 0.1)})
|
|
|
|
makeSmokeWithoutGlow({name="the", smokeWithoutGlowTint=makeColor(0.3, 0.75, 0.3, 0.1)})
|
|
|
|
makeSmokeAddingFuel({name="the"})
|
2016-07-29 15:44:31 -07:00
|
|
|
|
2018-01-25 23:55:09 -08:00
|
|
|
if settings.startup["rampant-useDumbProjectiles"].value then
|
2018-01-18 23:25:32 -08:00
|
|
|
acidBall.generateLegacy()
|
|
|
|
end
|
2016-08-21 14:48:55 -07:00
|
|
|
|
2018-01-18 23:25:32 -08:00
|
|
|
require("prototypes/buildings/ChunkScanner")
|
2018-01-12 18:55:20 -08:00
|
|
|
|