Files
Aurora.3/code/modules/item_worth/material_weapons.dm
Werner af16a489a6 Removes Weapons (#7415)
* Adds icon and hitsound where needed.

* Moves alt_attack to /obj/item and deletes weapons.dm

* Replaced /obj/item/weapon with /obj/item

* Fixes merge issues.

* Fix merge issues.
2019-11-16 18:36:13 +01:00

47 lines
953 B
Plaintext

/obj/item/material
var/worth_multiplier = 1
//Rule of thumb is: worth more than the parts put in
//Finished good is worth more than its individual parts
/obj/item/material/kitchen
worth_multiplier = 1.1
/obj/item/material/knife/butterfly
worth_multiplier = 8
/obj/item/material/harpoon
worth_multiplier = 15
/obj/item/material/hatchet
worth_multiplier = 6
/obj/item/material/minihoe
worth_multiplier = 6
/obj/item/material/scythe
worth_multiplier = 20
/obj/item/material/sword
worth_multiplier = 30
/obj/item/material/twohanded/fireaxe
worth_multiplier = 31
/obj/item/material/twohanded/spear
worth_multiplier = 7 //blade + stuff
/obj/item/material/star
worth_multiplier = 25
/obj/item/material/twohanded/pike
worth_multiplier = 20
/obj/item/material/twohanded/pike/halberd
worth_multiplier = 30
/obj/item/material/twohanded/pike/pitchfork
worth_multiplier = 10
/obj/item/material/twohanded/zweihander
worth_multiplier = 35