diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm index 7efc241fa9..207497922e 100644 --- a/code/game/objects/items/devices/multitool.dm +++ b/code/game/objects/items/devices/multitool.dm @@ -34,13 +34,17 @@ /obj/item/multitool/chaplain name = "\improper hypertool" - desc = "Used for pulsing wires to test which to cut. Seems to cause massive brain damage in certain targets." + desc = "Used for pulsing wires to test which to cut. Also emits microwaves to fry some brains!" damtype = BRAIN force = 18 armour_penetration = 35 hitsound = 'sound/effects/sparks4.ogg' var/chaplain_spawnable = TRUE total_mass = TOTAL_MASS_MEDIEVAL_WEAPON + throw_speed = 3 + throw_range = 4 + throwforce = 10 + obj_flags = UNIQUE_RENAME /obj/item/multitool/chaplain/Initialize() . = ..() diff --git a/code/modules/projectiles/guns/energy/laser.dm b/code/modules/projectiles/guns/energy/laser.dm index ddfcd63d69..bb97f9cf99 100644 --- a/code/modules/projectiles/guns/energy/laser.dm +++ b/code/modules/projectiles/guns/energy/laser.dm @@ -174,6 +174,10 @@ righthand_file = 'modular_citadel/icons/mob/citadel/guns_righthand.dmi' var/chaplain_spawnable = TRUE total_mass = TOTAL_MASS_MEDIEVAL_WEAPON + throw_speed = 3 + throw_range = 4 + throwforce = 10 + obj_flags = UNIQUE_RENAME /obj/item/gun/energy/laser/redtag/hitscan/chaplain/Initialize() . = ..() diff --git a/modular_citadel/code/game/objects/items/melee/eutactic_blades.dm b/modular_citadel/code/game/objects/items/melee/eutactic_blades.dm index 3e9ae064b1..4cf1d326a2 100644 --- a/modular_citadel/code/game/objects/items/melee/eutactic_blades.dm +++ b/modular_citadel/code/game/objects/items/melee/eutactic_blades.dm @@ -271,6 +271,7 @@ block_chance = 50 armour_penetration = 0 var/chaplain_spawnable = TRUE + obj_flags = UNIQUE_RENAME /obj/item/twohanded/dualsaber/hypereutactic/chaplain/Initialize() . = ..()