Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.86 KB | None | 0 0
  1. CFG:AddUpgrade( "speed", {
  2.     upgrade_id = "speed_upgrade_01", -- STRING, unqiue name for each upgrade
  3.     upgrade_name = "Growth Phytohormone Splice",
  4.     upgrade_description = [[Due to new revolutionary technology, splicing of the cannabis DNA allows for increased growth rates.]], -- STRING, description for upgrade, blank for nothing
  5.     upgrade_required = "", -- STRING, is there a upgrade that must be unlocked first? blank for none
  6.     upgrade_weedupgrade = { -- This is the actual speed increase on the plant
  7.         value_type = "percentage" -- "percentage" or "seconds" eg. 10% faster or 10 seconds quicker
  8.         value = 10
  9.     },
  10.     price = 0, -- NUMBER, price in cash 0 for no money requirement
  11.     exp_required = 0, -- NUMBER, exp needed 0 for no exp requirement
  12.     hide_detail_if_not_enough_exp, = false -- TRUE/FALSE, can players see the information if they aren't experienced enough
  13. } )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement