Advertisement
eva08maicy02

Dont Starve-Extended Map Icons - modinfo(zh_TW)

Nov 29th, 2017
557
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.50 KB | None | 0 0
  1. name = "Extended Map Icons"
  2. version = "1.12"
  3. description = "Add more icons to the map. Includes all the mobs, basic tools, flowers, gold nuggets, rocks, flints, and more."
  4. author = "IceGrog"
  5. forumthread = ""
  6. icon = "modicon.tex"
  7. icon_atlas = "modicon.xml"
  8.  
  9. api_version = 6
  10.  
  11. dont_starve_compatible = true
  12. reign_of_giants_compatible = true
  13. shipwrecked_compatible = true
  14.  
  15. configuration_options = {
  16.   {
  17.     name = "Icons_Border",
  18.     label = "圖案邊框",
  19.     default = "red_yellow",
  20.     options = {
  21.         {description = "紅色", data = "red"},
  22.         {description = "黃色", data = "yellow"},
  23.         {description = "紅色/黃色", data = "red_yellow"},
  24.         {description = "關閉", data = false}
  25.     }
  26.   },
  27.   {
  28.     name = "Basic_Mobs",
  29.     label = "生物",
  30.     default = true,
  31.     options = {
  32.         {description = "顯示", data = true},
  33.         {description = "不顯示", data = false}
  34.     }
  35.   },
  36.   {
  37.     name = "More_Mobs",
  38.     label = "更多生物(LAG)",
  39.     default = false,
  40.     options = {
  41.         {description = "顯示", data = true},
  42.         {description = "不顯示", data = false}
  43.     }
  44.   },
  45.   {
  46.     name = "Giants",
  47.     label = "頭目級生物",
  48.     default = true,
  49.     options = {
  50.         {description = "顯示", data = true},
  51.         {description = "不顯示", data = false}
  52.     }
  53.   },
  54.   {
  55.     name = "Tools",
  56.     label = "工具",
  57.     default = true,
  58.     options = {
  59.         {description = "顯示", data = true},
  60.         {description = "不顯示", data = false}
  61.     }
  62.   },
  63.   {
  64.     name = "Minerals",
  65.     label = "礦物",
  66.     default = true,
  67.     options = {
  68.         {description = "顯示", data = true},
  69.         {description = "不顯示", data = false}
  70.     }
  71.   },
  72.   {
  73.     name = "Bones",
  74.     label = "骨骸",
  75.     default = true,
  76.     options = {
  77.         {description = "顯示", data = true},
  78.         {description = "不顯示", data = false}
  79.     }
  80.   },
  81.   {
  82.     name = "Holes",
  83.     label = "巢穴",
  84.     default = true,
  85.     options = {
  86.         {description = "顯示", data = true},
  87.         {description = "不顯示", data = false}
  88.     }
  89.   },
  90.   {
  91.     name = "Vegetation",
  92.     label = "植被",
  93.     default = true,
  94.     options = {
  95.         {description = "顯示", data = true},
  96.         {description = "不顯示", data = false}
  97.     }
  98.   },
  99.   {
  100.     name = "Flowers",
  101.     label = "花",
  102.     default = false,
  103.     options = {
  104.         {description = "顯示", data = true},
  105.         {description = "不顯示", data = false}
  106.     }
  107.   },
  108.   {
  109.     name = "Seashells",
  110.     label = "貝殼",
  111.     default = false,
  112.     options = {
  113.         {description = "顯示", data = true},
  114.         {description = "不顯示", data = false}
  115.     }
  116.   },
  117.   {
  118.     name = "Pigs_Rituals",
  119.     label = "復活祭壇",
  120.     default = true,
  121.     options = {
  122.         {description = "顯示", data = true},
  123.         {description = "不顯示", data = false}
  124.     }
  125.   },
  126.   {
  127.     name = "Walls",
  128.     label = "牆",
  129.     default = true,
  130.     options = {
  131.         {description = "顯示", data = true, },
  132.         {description = "不顯示", data = false}
  133.     }
  134.   },
  135.   {
  136.     name = "Things",
  137.     label = "傳送台零件",
  138.     default = true,
  139.     options = {
  140.         {description = "顯示", data = true},
  141.         {description = "不顯示", data = false}
  142.     }
  143.   },
  144.   {
  145.     name = "Chester_Packim_Bones",
  146.     label = "切斯特和眼骨",
  147.     default = true,
  148.     options = {
  149.         {description = "顯示", data = true},
  150.         {description = "不顯示", data = false}
  151.     }
  152.   },
  153.   {
  154.     name = "Tracks",
  155.     label = "可疑的土堆",
  156.     default = true,
  157.     options = {
  158.         {description = "顯示", data = true},
  159.         {description = "不顯示", data = false}
  160.     }
  161.   },
  162. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement