Advertisement
Guest User

Untitled

a guest
Feb 11th, 2015
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. configuration_options =
  2. {
  3. {
  4. name = "f_recipe",
  5. label = "Difficulty",
  6. hover = "Here's where you to change your freezer's recipe",
  7. options =
  8. {
  9. {description = "Easy", data = "easy", hover = "5 Cut Stones 1 Gear and 1 Blue Gem"},
  10. {description = "Hard", data = "hard", hover = "10 Cut Stones 3 Gears and 3 Blue Gems"},
  11. },
  12. default = "easy"
  13. },
  14.  
  15. {
  16. name = "blank",
  17. label = " ",
  18. hover = " ",
  19. options =
  20. {
  21. {description = " ", data = 0},
  22. },
  23. default = 0
  24. },
  25.  
  26. {
  27. name = "chilltime",
  28. label = "Perish Time",
  29. hover = "Here we change the spoilage time of our food.",
  30. options =
  31. {
  32. {description = "Fridge", data = .5, hover = "Makes the freezer the same as icebox"},
  33. {description = "25", data = .37, hover = "Gives you 25% more time than the icebox"},
  34. {description = "50", data = .25, hover = "Gives you 50% more time than the icebox"},
  35. {description = "75", data = .12, hover = "Gives you 75% more time than the icebox"},
  36. {description = "No Spoilage", data = .01, hover = "With this option slected you will have no spoilage of food."},
  37. },
  38. default = .25
  39. },
  40.  
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement