模块:Lib/StatusMap

来自Noita Wiki
跳到导航 跳到搜索

此模块的文档可以在模块:Lib/StatusMap/doc创建

local SrcTable ={
    status_wet = "wet",
    status_bloody = "bloody",
    status_oiled = "oiled",
    status_on_fire = "on fire",
    status_internal_fire = "internal fire",
    status_ingestion_freezing = "chilly",
    status_blindness = "blinded",
    status_twitchy = "twitchy",
    effect_neutralized = "neutralized spells",
    status_hearty = "heartache",
    status_weaken = "vulnerable",
    streamingevent_gravity_player = "personal gravity field",
    status_slimy = "slimy",
    status_radioactive = "toxic",
    status_alcoholic = "alcoholic",
    status_ingestion_alcoholic_00 = "tipsy",
    status_ingestion_alcoholic_01 = "drunk",
    status_ingestion_alcoholic_02 = "wasted",
    status_poisoned = "poisoned",
    status_jarate = "jarated",
    status_food_poisoning = "food poisoning",
    status_farts = "gassy",
    status_nightvision = "wormy vision",
    status_satiated00 = "minimally satiated",
    status_satiated01 = "satiated",
    status_satiated02 = "fully satiated",
    status_satiated03 = "oversatiated",
    status_ingestion_movement_slower = "clumsy movement",
    status_satiated04 = "terribly oversatiated",
    status_satiated05 = "choking",
    status_satiated06 = "choking and bloated",
    status_ingestion_exploding = "bursting at the seams",
    status_trip_00 = "tripping",
    status_trip_01 = "tripping some",
    status_trip_02 = "heavily tripping",
    status_trip_03 = "tripping balls",
    status_curse_cloud_00 = "rain curse",
    status_curse_cloud_01 = "thunder curse",
    status_curse_cloud_02 = "acid rain curse",
    status_berserk = "berserk",
    status_polymorph = "polymorph",
    status_polymorph_random = "chaos polymorph",
    status_protection_polymorph = "polymorph immunity",
    status_invisibility = "invisible",
    status_charm = "charmed",
    status_hp_regeneration = "regeneration",
    status_confusion = "confused",
    status_worm_attractor = "worm food",
    status_teleportation = "teleportitis",
    status_protection_all = "protection from all",
    status_movement_faster = "greased lightning",
    status_faster_levitation = "faster levitation",
    status_mana_regeneration = "mana regeneration",
    status_rainbow_farts = "rainbow farts",
    status_homing_shooter = "boomerang spells",
    status_movement_slower_ui = "slower movement",
    status_wither = "wither",
    status_weaken_combined = "weakened",
    status_curse_wither_electricity = "weakening curse - electricity",
    status_curse_wither_explosion = "weakening curse - explosives",
    status_curse_wither_melee = "weakening curse - melee",
    status_curse_wither_projectile = "weakening curse - projectiles",
    status_damage_plus_small = "Damage plus small",
    status_mammi_eater = "the loathsome mämmi eater",
    status_weakness = "weakness"
}
--用于构建一个名字对应表,用来使得使用csv翻译的可以正常在模板中显示
local csv = require("Module:Lang_zh_cn")
local result = {}
for i,v in pairs(SrcTable)do
    result[csv.get(i)] = v
end

return result