Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. items.redberries.use.push("plant")
  2. items.redberries.onUse.plant = "bush"
  3. environmentals.bush.spread = 8
  4. environmentals.bush.allowedtiles = ["grass", "dirt","gravel"]
  5. environmentals.bush.garden = true
  6. environmentals.bush.resource = ["redberries"]
  7.  
  8. environmentals.pineappleplant.garden = true
  9. environmentals.pineappleplant.spread = 8
  10. environmentals.pineappleplant.allowedtiles = ["dirt","grass","sand"]
  11. environmentals.pineappleplant.trample = true
  12. items.pineapple.use.push("plant")
  13. items.pineapple.onUse.plant = "pineappleplant"
  14. items.pineapple.skilluse = "botany"
  15.  
  16. items.seaweed.use.push("plant")
  17. items.seaweed.onUse.plant = "seaweed_ground"
  18. environmentals.seaweed_ground.spread = 8
  19. environmentals.seaweed_ground.garden = true
  20.  
  21. items.potion = new Object
  22. items.potion.id = 251
  23. items.potion.x = 23
  24. items.potion.y = 3
  25. items.potion.name = "Stamina Potion"
  26. items.potion.weight = 2
  27. items.potion.use = ["cure"]
  28. items.potion.onUse = new Object
  29. items.potion.onUse.cure = [0, 20, 0, 0]
  30. items.potion.recipe = new Object
  31. items.potion.recipe.requires =[["redberries", 2, 2],["potablebottle", 1, 1]]
  32. items.potion.recipe.skill = "alchemy"
  33. items.potion.recipe.level = "intermediate"
  34. items.potion.durability = 25
  35. items.potion.returnOnUse = "glassbottle"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement