mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 04:26:03 +01:00
Personalized combat messages part 2 (#52890)
Adds more "personalized" combat messages for all participants in a fight: the attacker, the victim and the spectators
This commit is contained in:
@@ -16,7 +16,8 @@
|
||||
armour_penetration = 10
|
||||
custom_materials = list(/datum/material/iron=1150, /datum/material/glass=2075)
|
||||
hitsound = 'sound/weapons/bladeslice.ogg'
|
||||
attack_verb = list("smashed", "crushed", "cleaved", "chopped", "pulped")
|
||||
attack_verb_continuous = list("smashes", "crushes", "cleaves", "chops", "pulps")
|
||||
attack_verb_simple = list("smash", "crush", "cleave", "chop", "pulp")
|
||||
sharpness = SHARP_EDGED
|
||||
actions_types = list(/datum/action/item_action/toggle_light)
|
||||
obj_flags = UNIQUE_RENAME
|
||||
|
||||
@@ -16,7 +16,8 @@
|
||||
tool_behaviour = TOOL_MINING
|
||||
toolspeed = 1
|
||||
usesound = list('sound/effects/picaxe1.ogg', 'sound/effects/picaxe2.ogg', 'sound/effects/picaxe3.ogg')
|
||||
attack_verb = list("hit", "pierced", "sliced", "attacked")
|
||||
attack_verb_continuous = list("hits", "pierces", "slices", "attacks")
|
||||
attack_verb_simple = list("hit", "pierce", "slice", "attack")
|
||||
|
||||
/obj/item/pickaxe/suicide_act(mob/living/user)
|
||||
user.visible_message("<span class='suicide'>[user] begins digging into [user.p_their()] chest! It looks like [user.p_theyre()] trying to commit suicide!</span>")
|
||||
@@ -28,7 +29,8 @@
|
||||
/obj/item/pickaxe/rusted
|
||||
name = "rusty pickaxe"
|
||||
desc = "A pickaxe that's been left to rust."
|
||||
attack_verb = list("ineffectively hit")
|
||||
attack_verb_continuous = list("ineffectively hits")
|
||||
attack_verb_simple = list("ineffectively hit")
|
||||
force = 1
|
||||
throwforce = 1
|
||||
|
||||
@@ -133,7 +135,8 @@
|
||||
inhand_icon_state = "shovel"
|
||||
w_class = WEIGHT_CLASS_NORMAL
|
||||
custom_materials = list(/datum/material/iron=50)
|
||||
attack_verb = list("bashed", "bludgeoned", "thrashed", "whacked")
|
||||
attack_verb_continuous = list("bashes", "bludgeons", "thrashes", "whacks")
|
||||
attack_verb_simple = list("bash", "bludgeon", "thrash", "whack")
|
||||
sharpness = SHARP_EDGED
|
||||
|
||||
/obj/item/shovel/Initialize()
|
||||
@@ -171,5 +174,6 @@
|
||||
throwforce = 12
|
||||
w_class = WEIGHT_CLASS_NORMAL
|
||||
toolspeed = 0.7
|
||||
attack_verb = list("slashed", "impaled", "stabbed", "sliced")
|
||||
attack_verb_continuous = list("slashes", "impales", "stabs", "slices")
|
||||
attack_verb_simple = list("slash", "impale", "stab", "slice")
|
||||
sharpness = SHARP_EDGED
|
||||
|
||||
Reference in New Issue
Block a user