1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/resources/donators.lua

40 lines
1.4 KiB
Lua
Raw Normal View History

2018-09-11 01:08:22 +02:00
local Module = {}
Module.donator_perk_flags = {
rank = 0x1,
2018-09-13 14:46:51 +02:00
train = 0x2
2018-08-13 13:39:27 +02:00
}
2018-09-11 01:08:22 +02:00
local d = Module.donator_perk_flags
Module.donators = {
2018-09-13 14:46:51 +02:00
['aldldl'] = d.rank,
['Geostyx'] = d.rank,
['Linaori'] = d.rank,
['Xertez'] = d.rank,
2018-09-15 21:18:05 +02:00
['Chevalier1200'] = d.rank + d.train,
2018-09-16 17:48:00 +02:00
['DraugTheWhopper'] = d.rank + d.train,
2018-09-28 18:54:34 +02:00
['der-dave.com'] = d.rank + d.train,
2018-09-16 17:48:00 +02:00
['Jayefuu'] = d.rank,
2018-11-04 17:58:15 +02:00
['Valansch'] = d.rank,
2018-11-05 00:54:18 +02:00
['plague006'] = d.rank,
2018-11-05 02:38:03 +02:00
['chromaddict'] = d.rank,
2018-11-11 04:13:01 +02:00
['InphinitePhractals'] = d.rank + d.train,
['shoghicp'] = d.rank + d.train,
['DuelleuD'] = d.rank + d.train,
2018-11-14 16:52:11 +02:00
['henrycn1997'] = d.rank + d.train,
2018-11-15 15:03:12 +02:00
['Raiguard'] = d.rank + d.train,
2018-09-13 14:46:51 +02:00
}
Module.welcome_messages = {
['Linaori'] = 'I present to you Linaori of house Refactorio, Lady of the Void, Remover of Spaghetti, Queen of the Endless Nauvis, Breaker of Biters and Mother of Code!',
2018-09-28 18:54:34 +02:00
['Valansch'] = 'Welcome Valansch, <insert custom welcome message here>.',
2018-11-05 02:38:03 +02:00
['der-dave.com'] = "Dave doesn't want a welcome message.",
['plague006'] = 'plague wrote this dumb message you have to read. If you want your own dumb on-join message be sure to donate on Patreon!',
2018-11-12 11:36:27 +02:00
['shoghicp'] = 'Need more servers!',
['aldldl'] = "ALo's Here",
['Raiguard'] = "I am... was... God. The one you call 'The Almighty'. The creator of Factories. But now, I am dead. The Biters killed me. I am sorry.",
2018-09-11 01:08:22 +02:00
}
2018-11-11 22:12:49 +02:00
return Module