Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions code/game/objects/items/melee/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,18 @@

/obj/item/melee/cutlass
name = "cutlass"
desc = "A true pirates weapon, seems somewhat dull though"
desc = "YAAAAAR! A fine weapon for a pirate, fit for slicing land-lubbers." //All pirate weapons must have pirate quips from now on it is non-negotiable
icon = 'icons/obj/weapons/swords.dmi'
icon_state = "metalcutlass"
item_state = "metalcutlass"
lefthand_file = 'icons/mob/inhands/weapons/swords_lefthand.dmi'
righthand_file = 'icons/mob/inhands/weapons/swords_righthand.dmi'
force = 16
throwforce = 5
w_class = WEIGHT_CLASS_BULKY
slot_flags = ITEM_SLOT_BELT
force = 18
throwforce = 10
w_class = WEIGHT_CLASS_HUGE
block_chance = 30
sharpness = SHARP_EDGED
attack_verb = list("slashed", "cut")
hitsound = 'sound/weapons/rapierhit.ogg'
materials = list(/datum/material/iron = 1000)
Expand Down