More Lavaland Updates: Primal and Bayonets

This commit is contained in:
Fox McCloud
2019-08-19 20:02:53 -04:00
parent e428dd9dff
commit 3667557b60
29 changed files with 248 additions and 68 deletions
+9 -1
View File
@@ -115,7 +115,8 @@
throw_range = 6
materials = list(MAT_METAL=12000)
attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut")
sharp = 1
sharp = TRUE
var/bayonet = FALSE //Can this be attached to a gun?
/obj/item/kitchen/knife/suicide_act(mob/user)
user.visible_message(pick("<span class='suicide'>[user] is slitting [user.p_their()] wrists with the [src.name]! It looks like [user.p_theyre()] trying to commit suicide.</span>", \
@@ -160,14 +161,21 @@
icon_state = "combatknife"
item_state = "knife"
desc = "A military combat utility survival knife."
embedded_pain_multiplier = 4
embed_chance = 65
embedded_fall_chance = 10
force = 20
throwforce = 20
origin_tech = "materials=3;combat=4"
attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "cut")
bayonet = TRUE
/obj/item/kitchen/knife/combat/survival
name = "survival knife"
icon_state = "survivalknife"
embedded_pain_multiplier = 4
embed_chance = 35
embedded_fall_chance = 10
desc = "A hunting grade survival knife."
force = 15
throwforce = 15
@@ -224,3 +224,13 @@
var/mask_item = M.get_item_by_slot(slot_wear_mask)
if(istype(mask_item, /obj/item/clothing/mask/cigarette))
return mask_item
/obj/item/match/firebrand
name = "firebrand"
desc = "An unlit firebrand. It makes you wonder why it's not just called a stick."
smoketime = 20 //40 seconds
/obj/item/match/firebrand/New()
..()
matchignite()