Advertisement
eva08maicy02

Dont Starve-Combined Status - modinfo(zh_TW)

Dec 1st, 2017
1,579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.13 KB | None | 0 0
  1. --The name of the mod displayed in the 'mods' screen.
  2. name = "Combined Status"
  3.  
  4. --A description of the mod.
  5. description = "Displays Health, Hunger, Sanity, Temperature, Seasons, Moon Phase, and World Day."
  6.  
  7. --Who wrote this awesome mod?
  8. author = "rezecib, Kiopho, Soilworker, hotmatrixx"
  9.  
  10. --A version number so you can ask people if they are running an old version of your mod.
  11. version = "1.7.7"
  12.  
  13. --This lets other players know if your mod is out of date. This typically needs to be updated every time there's a new game update.
  14. api_version = 6
  15. api_version_dst = 10
  16. priority = 0
  17.  
  18. --Compatible with both the base game and Reign of Giants
  19. dont_starve_compatible = true
  20. reign_of_giants_compatible = true
  21. shipwrecked_compatible = true
  22. dst_compatible = true
  23.  
  24. --This lets clients know if they need to get the mod from the Steam Workshop to join the game
  25. all_clients_require_mod = false
  26.  
  27. --This determines whether it causes a server to be marked as modded (and shows in the mod list)
  28. client_only_mod = true
  29.  
  30. --This lets people search for servers with this mod by these tags
  31. server_filter_tags = {}
  32.  
  33. icon_atlas = "combinedstatus.xml"
  34. icon = "combinedstatus.tex"
  35.  
  36. forumthread = "/files/file/1136-combined-status/"
  37.  
  38. --[[
  39. Credits:
  40.     Kiopho for writing the original mod and giving me permission to maintain it for DST!
  41.     Soilworker for making SeasonClock and allowing me to incorporate it
  42.     hotmatrixx for making BetterMoon and allowing me to incorporate it
  43. ]]
  44.  
  45. local hud_scale_options = {}
  46. for i = 1,21 do
  47.     local scale = (i-1)*5 + 50
  48.     hud_scale_options[i] = {description = ""..(scale*.01), data = scale}
  49. end
  50.  
  51. configuration_options =
  52. {
  53.     {
  54.         name = "SHOWTEMPERATURE",
  55.         label = "體溫",
  56.         hover = "設定是否顯示玩家的體溫。",
  57.         options =   {
  58.                         {description = "顯示", data = true},
  59.                         {description = "隱藏", data = false},
  60.                     },
  61.         default = true,
  62.     },
  63.     {
  64.         name = "SHOWWORLDTEMP",
  65.         label = "顯示氣溫",
  66.         hover = "設定是否顯示氣溫(營火等溫源不計算)。",
  67.         options =   {
  68.                         {description = "顯示", data = true},
  69.                         {description = "隱藏", data = false},
  70.                     },
  71.         default = false,
  72.     },
  73.     {
  74.         name = "SHOWTEMPBADGES",
  75.         label = "顯示小圖示",
  76.         hover = "在體溫和氣溫指數的左邊標上小圖示來方便辨認。",
  77.         options =   {
  78.                         {description = "顯示", data = true, hover = "總共可以標示體溫、氣溫和罪惡值,前提是你有開啟這些功能。"},
  79.                         {description = "隱藏", data = false, hover = "永遠不顯示小標示。"},
  80.                     },
  81.         default = true,
  82.     },
  83.     {
  84.         name = "UNIT",
  85.         label = "溫度單位",
  86.         hover = "可選擇遊戲溫度(預設)、攝氏或華氏。",
  87.         options =   {
  88.                         {description = "遊戲溫度", data = "T",
  89.                             hover = "這是遊戲預設的溫度單位。"
  90.                                 .."\n在0度凍結,在70度過熱;每5度得到警示"},
  91.                         {description = "攝氏", data = "C",
  92.                             hover = "這是採用遊戲溫度的一半數字"
  93.                                 .."\n在0度凍結,在35度過熱;每2.5度得到警示"},
  94.                         {description = "華氏", data = "F",
  95.                             hover = "這是美國地區最常用的溫度單位"
  96.                                 .."\n在32度凍結,在158度過熱;每9度得到警示"},
  97.                     },
  98.         default = "T",
  99.     },
  100.     {
  101.         name = "SHOWWANINGMOON",
  102.         label = "顯示月光變化",
  103.         hover = "設定是否顯示月光的變化"
  104.              .. "\n在多人版,這已經是內建的功能。",
  105.         options =   {
  106.                         {description = "顯示", data = true},
  107.                         {description = "不顯示", data = false},
  108.                     },
  109.         default = true,
  110.     },
  111.     {
  112.         name = "SHOWMOON",
  113.         label = "顯示月光狀態",
  114.         hover = "設定要在哪個時段顯示月光狀態",
  115.         options =   {
  116.                         {description = "只有晚上", data = 0, hover = "只在夜晚顯示,這是預設的設定"},
  117.                         {description = "黃昏", data = 1, hover = "在黃昏和夜晚時顯示"},
  118.                         {description = "永遠顯示", data = 2, hover = "全天候顯示"},
  119.                     },
  120.         default = 1,
  121.     },
  122.     {
  123.         name = "SHOWNEXTFULLMOON",
  124.         label = "預測滿月",
  125.         hover = "預測下一個滿月的天數。"
  126.              .. "\n當滑鼠移到標示上面時顯示。",
  127.         options =   {
  128.                         {description = "是", data = true},
  129.                         {description = "否", data = false},
  130.                     },
  131.         default = true,
  132.     },
  133.     {
  134.         name = "FLIPMOON",
  135.         label = "翻轉月亮",
  136.         hover = "翻轉月相(預設是北半球的月相)"
  137.             .. "\n如果許選是,則會顯示南半球的月相。",
  138.         options =   {
  139.                         {description = "是", data = true, hover = "展現南半球的月相"},
  140.                         {description = "否", data = false, hover = "展現北半球的月相"},
  141.                     },
  142.         default = false,
  143.     },
  144.     {
  145.         name = "SEASONOPTIONS",
  146.         label = "季節時鐘",
  147.         hover = "增加顯示季節的時鐘,並且重新排列狀態標誌。"
  148.         .."\n或者增加一個標示顯示季節,並且當滑鼠移過去會顯示當前季節剩餘天數。",
  149.         options =   {
  150.                         {description = "最簡易", data = "Micro"},
  151.                         {description = "緊湊型", data = "Compact"},
  152.                         {description = "時鐘型", data = "Clock"},
  153.                         {description = "不顯示", data = ""},
  154.                     },
  155.         default = "Clock",
  156.     },
  157.     {
  158.         name = "SHOWNAUGHTINESS",
  159.         label = "罪惡值",
  160.         hover = "設定是否顯示玩家的罪惡值。此功能無法在多人版使用。",
  161.         options =   {
  162.                         {description = "顯示", data = true},
  163.                         {description = "隱藏", data = false},
  164.                     },
  165.         default = true,
  166.     },
  167.     {
  168.         name = "SHOWBEAVERNESS",
  169.         label = "海狸值",
  170.         hover = "當伍迪(Woodie)還是人類狀態的時候顯示海狸值。在多人版,這已經是內建的功能。",
  171.         options =   {
  172.                         {description = "永遠顯示", data = true},
  173.                         {description = "變身時顯示", data = false},
  174.                     },
  175.         default = true,
  176.     },
  177.     {
  178.         name = "HIDECAVECLOCK",
  179.         label = "洞穴時鐘",
  180.         hover = "在洞穴中顯示時鐘。只適用於Reign of Giants的單人遊戲。",
  181.         options =   {
  182.                         {description = "顯示", data = false},
  183.                         {description = "隱藏", data = true},
  184.                     },
  185.         default = false,
  186.     },
  187.     {
  188.         name = "SHOWSTATNUMBERS",
  189.         label = "狀態值",
  190.         hover = "顯示當前的健康、飢餓度和血量的數字。",
  191.         options =   {
  192.                         {description = "當前/最大值", data = "Detailed"},
  193.                         {description = "永遠顯示", data = true},
  194.                         {description = "被動顯示", data = false},
  195.                     },
  196.         default = true,
  197.     },
  198.     {
  199.         name = "SHOWMAXONNUMBERS",
  200.         label = "顯示狀態最大值",
  201.         hover = "顯示狀態\"最大值:\"的數字,變得更顯眼。",
  202.         options =   {
  203.                         {description = "顯示", data = true},
  204.                         {description = "隱藏", data = false},
  205.                     },
  206.         default = true,
  207.     }, 
  208.     {
  209.         name = "SHOWCLOCKTEXT",
  210.         label = "顯示時鐘上的文字",
  211.         hover = "在時鐘(天數)和季節時鐘(當前季節)上顯示文字。\ n如果隱藏,則只會在滑鼠移過時才會顯示。",
  212.         options =   {
  213.                         {description = "顯示", data = true},
  214.                         {description = "隱藏", data = false},
  215.                     },
  216.         default = true,
  217.     }, 
  218.     {
  219.         name = "HUDSCALEFACTOR",
  220.         label = "HUD比例",
  221.         hover = "讓你可以自由調整整個狀態界面的整體大小。預設值為1。",
  222.         options = hud_scale_options,
  223.         default = 100,
  224.     },
  225. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement