mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-14 10:13:13 +02:00
22 lines
447 B
Lua
22 lines
447 B
Lua
local Module = {}
|
|
|
|
Module.donator_perk_flags = {
|
|
rank = 0x1,
|
|
welcome = 0x2, -- not implemented
|
|
train = 0x4,
|
|
currency = 0x8 -- not implemented
|
|
}
|
|
|
|
local d = Module.donator_perk_flags
|
|
|
|
Module.donators = {
|
|
['robertkruijt'] = d.rank + d.train,
|
|
['aldldl'] = d.rank,
|
|
['Geostyx'] = d.rank,
|
|
['Linaori'] = d.rank,
|
|
['Terarink'] = d.rank + d.train,
|
|
['Xertez'] = d.rank,
|
|
}
|
|
|
|
return Module
|