mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-23 21:27:01 +01:00
Convert some bools to TRUE/FALSE instead of 1/0.
This commit is contained in:
@@ -173,8 +173,8 @@
|
||||
item_state = "joanariamob"
|
||||
origin_tech = "materials=7"
|
||||
force = 15
|
||||
sharp = 1
|
||||
edge = 1
|
||||
sharp = TRUE
|
||||
edge = TRUE
|
||||
hitsound = 'sound/weapons/bladeslice.ogg'
|
||||
|
||||
|
||||
@@ -933,8 +933,8 @@
|
||||
icon_state = "stunstaff00"
|
||||
var/base_icon = "stunstaff"
|
||||
force = 5
|
||||
sharp = 0
|
||||
edge = 0
|
||||
sharp = FALSE
|
||||
edge = FALSE
|
||||
throwforce = 7
|
||||
w_class = ITEMSIZE_HUGE
|
||||
origin_tech = list(TECH_COMBAT = 2)
|
||||
@@ -1029,8 +1029,8 @@
|
||||
var/active_throwforce
|
||||
var/active_w_class
|
||||
var/active_embed_chance = 0
|
||||
sharp = 0
|
||||
edge = 0
|
||||
sharp = FALSE
|
||||
edge = FALSE
|
||||
|
||||
/obj/item/weapon/melee/fluffstuff/proc/activate(mob/living/user)
|
||||
if(active)
|
||||
@@ -1039,8 +1039,8 @@
|
||||
embed_chance = active_embed_chance
|
||||
force = active_force
|
||||
throwforce = active_throwforce
|
||||
sharp = 1
|
||||
edge = 1
|
||||
sharp = TRUE
|
||||
edge = TRUE
|
||||
w_class = active_w_class
|
||||
playsound(src, 'sound/weapons/sparkle.ogg', 50, 1)
|
||||
|
||||
@@ -1112,8 +1112,8 @@
|
||||
|
||||
..()
|
||||
attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut")
|
||||
sharp = 1
|
||||
edge = 1
|
||||
sharp = TRUE
|
||||
edge = TRUE
|
||||
icon_state = "[active_state]_sharp"
|
||||
damtype = BRUTE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user