Guest User

Untitled

a guest
Jul 24th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.31 KB | None | 0 0
  1. TLDR.Language = {}
  2.  
  3. TLDR.Language = {
  4.     Voice = {
  5.         cold1 = "I think I can't feel my fingers and toes again.",
  6.         cold2 = "So...Cold!",
  7.         cold3 = "It's getting colder.If I have don't have enough firewood to last the night, i might not make it..",
  8.  
  9.         hungry1 = "I need to find something eat before i starve to death.",
  10.         hungry2 = "My stomach doesn't feel so good.",
  11.         hungry3 = "I have never been so hungry in my life.",
  12.         hungry4 = "Can you eat trees?",
  13.         hungry5 = "I would eat snow if the hypothermia wouldnt kill me.",
  14.         hungry6 = "Never thought i've be dying from starvation.",
  15.         hungry7 = "*Rumbling belly*",
  16.  
  17.         drink1 = "I would do anything for a drink right now.",
  18.         drink2 = "Gonna need water real soon.",
  19.         drink3 = "So thirsty... Got to be a way to melt some snow.",
  20.  
  21.         sleep1 = "*yawn*",
  22.         sleep2 = "I'm gonna need a rest soon.",
  23.         sleep3 = "I need to find place for a rest.",
  24.     },
  25.     VGUI = {
  26.         SomebodyLooting = "Somebody already looting this container!",
  27.         SpawnBed = "Spawn bed",
  28.         SpawnCampfire = "Spawn campfire",
  29.         Back = "Back",
  30.         Take = "Take",
  31.         Leave = "Leave",
  32.         Use = "Use",
  33.         Drop = "Drop",
  34.         Sleep = "Sleep",
  35.         MeltSnow = "Melt snow",
  36.         WaterMelting = "Snow is melting, please wait",
  37.         Campfire_Time = "Campfire working time",
  38.         Campfire_Woods = "Woods",
  39.         Campfire_AddWoods = "Add wood",
  40.         Campfire_Fire = "Make a fire",
  41.         Campfire_CookMeat = "Cook meat",
  42.         Autosave = "Game autosaved",
  43.         Save = "Game saved",
  44.         SaveGame = "Save game",
  45.         KnifeNeeded = "You need knife for that!",
  46.         CutMeat = "Cut into meat",
  47.         Death = {
  48.             Killed = "You are dead",
  49.             Frozen = "You are frozen to death",
  50.             Hunger = "You died of hunger",
  51.             Drink = "You died of dehydration",
  52.             Survived = "You survived"
  53.         },
  54.         RIP = "Rest in peace, ",
  55.         Items = {
  56.             ["surv_chipsbag1"] = "Chips",
  57.             ["surv_chipsbag2"] = "Chips",
  58.             ["surv_chipsbag3"] = "Chips",
  59.             ["surv_bagel1"] = "Bagel",
  60.             ["surv_fruitbanana"] = "Banana",
  61.             ["surv_bread1"] = "Bread",
  62.             ["surv_cabbage3"] = "Cabbage",
  63.             ["surv_vegcarrot"] = "Carrot",
  64.             ["surv_cheesewheel1a"] = "Cheese",
  65.             ["surv_chickenwrap"] = "Chicken wrap",
  66.             ["surv_fruitcoconut"] = "Cocount",
  67.             ["surv_cookies"] = "Cookies",
  68.             ["surv_vegeggplant"] = "Eggplant",
  69.             ["surv_veggourd"] = "Gourd",
  70.             ["surv_fruitgrape1"] = "Grape",
  71.             ["surv_fruitpineapple"] = "Pineapple",
  72.             ["surv_fruitpumpkin"] = "Pumpkin",
  73.             ["surv_meat_cooked"] = "Meat",
  74.             ["surv_meat_raw"] = "Meat(raw)",
  75.             ["surv_vegcorn"] = "Corn",
  76.             ["surv_applejuice"] = "Apple juice",
  77.             ["surv_sodacan02"] = "Can of soda",
  78.             ["surv_orangejuice"] = "Orange juice",
  79.             ["surv_can"] = "Can",
  80.             ["surv_wood"] = "Wood",
  81.             ["surv_medic"] = "Medicine",
  82.             ["tldr_sf_campfire"] = "Campfire",
  83.             ["tldr_bed"] = "Bed",
  84.             ["tldr_crate"] = "Crate",
  85.             ["tldr_player_crate"] = "Box",
  86.             ["surv_weapon"] = "Rifle",
  87.             ["notmic_mosin"] = "Rifle",
  88.             ["surv_water"] = "Water",
  89.             ["tldr_bear_gib"] = "Bear",
  90.             ["surv_knife"] = "Knife",
  91.             ["tldr_box"] = "Box",
  92.             ["tldr_cabinet"] = "Cabinet",
  93.             ["tldr_dresser"] = "Dresser",
  94.             ["tldr_lcabinet"] = "Cabinet",
  95.             ["tldr_locker"] = "Locker",
  96.             ["surv_ammo"] = "Ammo"
  97.         },
  98.         Empty = "Empty",
  99.     },
  100.     Other = {
  101.         kg = "kg",
  102.         seconds = "sec.",
  103.         Day = "Day(s)",
  104.         Hour = "Hour(s)",
  105.         Minute = "Minute(s)",
  106.         Second = "Second(s)",
  107.     }
  108. }
Advertisement
Add Comment
Please, Sign In to add comment