mirror of
https://github.com/Refactorio/RedMew.git
synced 2025-03-05 15:05:57 +02:00
* Add creep spread mechanic * Added bot ore islands, use bool flag to turn on. * Added a noise based chest spawning system for artefacts * Added coin loot from biters and mining * Track artefacts launched into space * Add Creepy map preset * Update donators.lua * Add scenario info for crashsite (#291) * Split colors resources from colors code & catchup on donators (#288) * Split colors resources from colors code * Switch back to colors * Added jail button Moved parts of the jail command to report.lua Made jailing possible from a users report. closes #215 * Added sound for new reports Admins now get a sound when a new report is created. Useful for admins that doesn't have Factorio as active window. Currently set the sound_path as utility/tutorial_notice * Split chat triggers from control * Move cheat tracking outside of control.lua * Remove player-specific code * Split donator/on_join messages out of control * Move features into features folder * Indentation fix I aimed to fix the troublesome indentation. * Added a single indent * Make sure biter modifiers are accessible for mods * Consistency change regarding table access * Added NightTime.lua Split the time assignment into a new file NightTime.lua allowing for it to be disabled. (Restore normal day/night cycle) Also added a popup when a player places a solar panel informing that they are purely cosmetic Removed the recipe for portable solar panels because they are useless, but the technology is needed. * Fixed debug print grid value to show non-rounded value * added support for hidden tiles * Add newline to eof * Fixed no newline, indentation and scope of research * crash_site outposts set hidden tile to 'grass-1' * Log items spawned by crafting in cheat mode * Newline to eof * Put responses into table * Use trigger as table key * Change name of lattice to diagonal lattice (#297) * Add Diagonal Ribbon to map presets (#294) * Reorganize control (#312) * Check for config before disabling fish market (#311) * Force diggy biters to spawn, even if there's no space (#308) * Fixed some small things from feedback and issues (#313) * Update fractal_balls.lua * Add ALo's message and color (#314) * Add join message for ALo * Add ALo's color * Typo in donators.lua * fixed tile corruption issus closes #310 (#317) * Update player_list.lua * Update diagonal_ribbon.lua (#322) * Regulars: remove duplicates and sort alphabetically (#320)
39 lines
1.4 KiB
Lua
39 lines
1.4 KiB
Lua
return {
|
|
['grilledham'] = {
|
|
color = {r = 0.9290000202716064, g = 0.3860000739097595, b = 0.51399999856948853, a = 0.5},
|
|
chat_color = {r = 1, g = 0.51999998092651367, b = 0.63300001621246338, a = 0.5}
|
|
},
|
|
['plague006'] = {
|
|
color = {r = 64, g = 224, b = 208, a = 0.5},
|
|
chat_color = {r = 175, g = 238, b = 238, a = 0.5}
|
|
},
|
|
['Linaori'] = {
|
|
color = {r = 255, g = 255, b = 0, a = 0.5},
|
|
chat_color = {r = 255, g = 255, b = 0, a = 0.5}
|
|
},
|
|
['Jayefuu'] = {
|
|
color = {r = 0.559, g = 0.761, b = 0.157, a = 0.5},
|
|
chat_color = {r = 0.708, g = 0.996, b = 0.134, a = 0.5}
|
|
},
|
|
['robertkruijt'] = {
|
|
color = {r = 0.275, g = 0.755, b = 0.712, a = 0.5},
|
|
chat_color = {r = 0.335, g = 0.918, b = 0.866, a = 0.5}
|
|
},
|
|
['der-dave.com'] = {
|
|
color = {r = 255, g = 162, b = 0, a = 0.5},
|
|
chat_color = {r = 255, g = 162, b = 0, a = 0.5}
|
|
},
|
|
['chromaddict'] = {
|
|
color = {r = 0, g = 1, b = 1, a = 0.5},
|
|
chat_color = {r = 0, g = 1, b = 1, a = 0.5}
|
|
},
|
|
['shoghicp'] = {
|
|
color = {a = 0, b = 0.50980395078659058, g = 0, r = 0.29411765933036804},
|
|
chat_color = {a = 0, b = 0.50980395078659058, g = 0, r = 0.29411765933036804}
|
|
},
|
|
['aldldl'] = {
|
|
color = {r = 0, g = 127, b = 0, a = 0.5},
|
|
chat_color = {r = 0, g = 127, b = 0, a = 0.5}
|
|
},
|
|
}
|