mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-01 21:12:27 +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.
85 lines
2.8 KiB
Plaintext
85 lines
2.8 KiB
Plaintext
/obj/item/material/harpoon
|
|
name = "harpoon"
|
|
sharp = 1
|
|
edge = 1
|
|
desc = "Tharr she blows!"
|
|
icon_state = "harpoon"
|
|
item_state = "harpoon"
|
|
force_divisor = 0.3 // 18 with hardness 60 (steel)
|
|
attack_verb = list("jabbed","stabbed","ripped")
|
|
|
|
/obj/item/material/hatchet
|
|
name = "hatchet"
|
|
desc = "A very sharp axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."
|
|
icon = 'icons/obj/weapons.dmi'
|
|
icon_state = "hatchet"
|
|
force_divisor = 0.2 // 12 with hardness 60 (steel)
|
|
thrown_force_divisor = 0.75 // 15 with weight 20 (steel)
|
|
w_class = 2
|
|
sharp = 1
|
|
edge = 1
|
|
origin_tech = list(TECH_MATERIAL = 2, TECH_COMBAT = 1)
|
|
attack_verb = list("chopped", "torn", "cut")
|
|
applies_material_colour = 0
|
|
drop_sound = 'sound/items/drop/axe.ogg'
|
|
|
|
/obj/item/material/hatchet/butch
|
|
name = "butcher's cleaver"
|
|
icon = 'icons/obj/kitchen.dmi'
|
|
icon_state = "butch"
|
|
desc = "A huge thing used for chopping and chopping up meat."
|
|
force_divisor = 0.25 // 15 when wielded with hardness 60 (steel)
|
|
slot_flags = SLOT_BELT
|
|
attack_verb = list("cleaved", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut")
|
|
|
|
/obj/item/material/hatchet/unathiknife
|
|
name = "duelling knife"
|
|
desc = "A length of leather-bound wood studded with razor-sharp teeth. How crude."
|
|
icon = 'icons/obj/weapons.dmi'
|
|
icon_state = "unathiknife"
|
|
attack_verb = list("ripped", "torn", "cut")
|
|
|
|
/obj/item/material/hook
|
|
name = "meat hook"
|
|
sharp = 1
|
|
edge = 1
|
|
desc = "A sharp, metal hook that sticks into things."
|
|
icon = 'icons/obj/kitchen.dmi'
|
|
icon_state = "hook_knife"
|
|
item_state = "hook_knife"
|
|
|
|
/obj/item/material/minihoe // -- Numbers
|
|
name = "mini hoe"
|
|
desc = "It's used for removing weeds or scratching your back."
|
|
icon = 'icons/obj/weapons.dmi'
|
|
icon_state = "hoe"
|
|
item_state = "hoe"
|
|
force_divisor = 0.25 // 5 with weight 20 (steel)
|
|
thrown_force_divisor = 0.25 // as above
|
|
w_class = 2
|
|
attack_verb = list("slashed", "sliced", "cut", "clawed")
|
|
|
|
/obj/item/material/scythe
|
|
icon_state = "scythe"
|
|
name = "scythe"
|
|
desc = "A sharp and curved blade on a long fibremetal handle, this tool makes it easy to reap what you sow."
|
|
force_divisor = 0.275 // 16 with hardness 60 (steel)
|
|
thrown_force_divisor = 0.25 // 5 with weight 20 (steel)
|
|
sharp = 1
|
|
edge = 1
|
|
throw_speed = 1
|
|
throw_range = 3
|
|
w_class = 4
|
|
slot_flags = SLOT_BACK
|
|
origin_tech = list(TECH_MATERIAL = 2, TECH_COMBAT = 2)
|
|
attack_verb = list("chopped", "sliced", "cut", "reaped")
|
|
|
|
/obj/item/material/scythe/sickle
|
|
icon_state = "sickle0"
|
|
name = "sickle"
|
|
desc = "A short sharp and curved blade on a wood handle, this tool makes it easy to cut grass."
|
|
force_divisor = 0.175 // 16 with hardness 60 (steel)
|
|
thrown_force_divisor = 0.04 // 5 with weight 20 (steel)
|
|
throw_speed = 2
|
|
throw_range = 3
|
|
w_class = 2 |