Guest User

Untitled

a guest
Feb 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. var/list/craft_items = list(\
  2. list("2stone") = list(list(name = "Sharp Rock", item = /obj/objects/stones/sharprock) ),\
  3. list("2wood") = list(list(name = "Wood Floor", item = /obj/objects/floors/woodfloor) ),\
  4. list("2wood", "vine") = list(list(name = "Wood Wall", item = /obj/objects/walls/woodwall) ),\
  5.  
  6. list("stone", "sharprock") = list(list(name = "Arrowhead", item = /obj/objects/stones/arrowhead) ),\
  7.  
  8. list("arrowhead", "wood") = list(list(name = "Spear", item = /obj/objects/weapons/spear) ),\
  9.  
  10. list("wood", "stone", "vine") = list(list(name = "Flail", item = /obj/objects/weapons/flail) ),\
  11.  
  12. list("wood", "stone") = list(\
  13. list(name = "Mace", item = /obj/objects/weapons/mace),\
  14. list(name = "Sledgehammer", item = /obj/objects/weapons/sledgehammer),\
  15. ),\
  16.  
  17. list("sharprock", "wood") = list(\
  18. list(name = "Axe", item = /obj/objects/weapons/axe),\
  19. list(name = "Knife", item = /obj/objects/weapons/knife),\
  20. list(name = "Shovel", item = /obj/objects/weapons/shovel),\
  21. ),\
  22. )
Add Comment
Please, Sign In to add comment