diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 6b21e1da437..e16b315bb25 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -37584,11 +37584,7 @@ desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; name = "Carton of Estus" }, -/obj/item/nullrod/claymore/glowing{ - desc = "Don't tell anyone you put any points into dex, though."; - force = 10; - name = "moonlight greatsword" - }, +/obj/item/melee/moonlight_greatsword, /obj/effect/decal/remains/human, /obj/effect/turf_decal/tile/neutral{ dir = 1 diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 323048b6b0b..4be31610e44 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -2803,14 +2803,7 @@ /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, -/obj/item/melee/baseball_bat{ - desc = "Don't tell anyone you put any points into dex, though."; - icon_state = "swordon"; - inhand_icon_state = "swordon"; - lefthand_file = 'icons/mob/inhands/weapons/swords_lefthand.dmi'; - name = "moonlight greatsword"; - righthand_file = 'icons/mob/inhands/weapons/swords_righthand.dmi' - }, +/obj/item/melee/moonlight_greatsword, /turf/open/floor/plating{ icon_state = "panelscorched" }, diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm index e6deb3eb0c3..0fbabb4bf9b 100644 --- a/code/game/objects/items/weaponry.dm +++ b/code/game/objects/items/weaponry.dm @@ -948,3 +948,21 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301 owner.visible_message("[owner] parries [attack_text] with [src]!") return TRUE return FALSE + +/obj/item/melee/moonlight_greatsword + name = "moonlight greatsword" + desc = "Don't tell anyone you put any points into dex, though." + icon_state = "swordon" + inhand_icon_state = "swordon" + worn_icon_state = "swordon" + lefthand_file = 'icons/mob/inhands/weapons/swords_lefthand.dmi' + righthand_file = 'icons/mob/inhands/weapons/swords_righthand.dmi' + w_class = WEIGHT_CLASS_BULKY + slot_flags = ITEM_SLOT_BACK|ITEM_SLOT_BELT + block_chance = 20 + sharpness = SHARP_EDGED + force = 14 + throwforce = 12 + hitsound = 'sound/weapons/bladeslice.ogg' + attack_verb_continuous = list("attacks", "slashes", "stabs", "slices", "tears", "lacerates", "rips", "dices", "cuts") + attack_verb_simple = list("attack", "slash", "stab", "slice", "tear", "lacerate", "rip", "dice", "cut")