Files
factorio-scenario-ExpCluster/config/compilatron.lua
Cooldude2606 9ecd0cca0d Config
2019-07-23 17:46:49 +01:00

24 lines
843 B
Lua

--- Config file for the compliatrons including where they spawn and what messages they show
-- @config Compilatron
return {
message_cycle=60*15, --- @setting message_cycle 15 seconds default, how often (in ticks) the messages will cycle
locations={ --- @setting locations defines the spawn locations for all compilatrons
['Spawn']={x=0,y=0}
},
messages={ --- @setting messages the messages that each one will say, must be same name as its location
['Spawn']={
{'info.website'},
{'info.read-readme'},
{'info.discord'},
{'info.softmod'},
{'info.wiki'},
{'info.redmew'},
{'info.feedback'},
{'info.custom-commands'},
{'info.status'},
{'info.lhd'},
{'info.github'},
}
}
}