mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-29 11:31:38 +00:00
* 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.
47 lines
953 B
Plaintext
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 |