Update files
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
wound_bonus = 0
|
||||
damage = 25
|
||||
|
||||
/obj/item/projectile/beam/laser/hellfire/Initialize()
|
||||
/obj/item/projectile/beam/laser/hellfire/Initialize(mapload)
|
||||
. = ..()
|
||||
transform *= 2
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
damage = 6
|
||||
var/piercing = FALSE
|
||||
|
||||
/obj/item/projectile/bullet/dart/Initialize()
|
||||
/obj/item/projectile/bullet/dart/Initialize(mapload)
|
||||
. = ..()
|
||||
create_reagents(50, NO_REACT, NO_REAGENTS_VALUE)
|
||||
|
||||
@@ -32,13 +32,13 @@
|
||||
/obj/item/projectile/bullet/dart/piercing
|
||||
piercing = TRUE
|
||||
|
||||
/obj/item/projectile/bullet/dart/metalfoam/Initialize()
|
||||
/obj/item/projectile/bullet/dart/metalfoam/Initialize(mapload)
|
||||
. = ..()
|
||||
reagents.add_reagent(/datum/reagent/aluminium, 15)
|
||||
reagents.add_reagent(/datum/reagent/foaming_agent, 5)
|
||||
reagents.add_reagent(/datum/reagent/toxin/acid, 5)
|
||||
|
||||
/obj/item/projectile/bullet/dart/catranq/Initialize()
|
||||
/obj/item/projectile/bullet/dart/catranq/Initialize(mapload)
|
||||
. = ..()
|
||||
reagents.add_reagent(/datum/reagent/fermi/furranium, 5) // Turns out I don't even need to give this guy actual tranquilizer chems.
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
var/atom/throw_target = get_edge_target_turf(M, get_dir(src, get_step_away(M, src)))
|
||||
M.safe_throw_at(throw_target, 3, 2)
|
||||
|
||||
/obj/item/projectile/bullet/shotgun_meteorslug/Initialize()
|
||||
/obj/item/projectile/bullet/shotgun_meteorslug/Initialize(mapload)
|
||||
. = ..()
|
||||
SpinAnimation()
|
||||
|
||||
@@ -118,7 +118,7 @@
|
||||
wound_bonus = 0
|
||||
bare_wound_bonus = 7.5
|
||||
|
||||
/obj/item/projectile/bullet/pellet/shotgun_improvised/Initialize()
|
||||
/obj/item/projectile/bullet/pellet/shotgun_improvised/Initialize(mapload)
|
||||
. = ..()
|
||||
range = rand(1, 8)
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
icon_state = "banana"
|
||||
range = 200
|
||||
|
||||
/obj/item/projectile/bullet/honker/Initialize()
|
||||
/obj/item/projectile/bullet/honker/Initialize(mapload)
|
||||
. = ..()
|
||||
SpinAnimation()
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
hitsound = 'sound/weapons/taserhit.ogg'
|
||||
range = 10
|
||||
|
||||
/obj/item/projectile/energy/net/Initialize()
|
||||
/obj/item/projectile/energy/net/Initialize(mapload)
|
||||
. = ..()
|
||||
SpinAnimation()
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
light_range = 3
|
||||
anchored = TRUE
|
||||
|
||||
/obj/effect/nettingportal/Initialize()
|
||||
/obj/effect/nettingportal/Initialize(mapload)
|
||||
. = ..()
|
||||
var/obj/item/beacon/teletarget = null
|
||||
for(var/obj/machinery/computer/teleporter/com in GLOB.machines)
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
"purple" = "#FF00FF"
|
||||
)
|
||||
|
||||
/obj/item/projectile/energy/nuclear_particle/Initialize()
|
||||
/obj/item/projectile/energy/nuclear_particle/Initialize(mapload)
|
||||
. = ..()
|
||||
//Random color time!
|
||||
var/our_color = pick(particle_colors)
|
||||
|
||||
@@ -382,7 +382,7 @@
|
||||
var/weakened_icon = "decursed"
|
||||
var/auto_destroy = TRUE
|
||||
|
||||
/obj/structure/closet/decay/Initialize()
|
||||
/obj/structure/closet/decay/Initialize(mapload)
|
||||
. = ..()
|
||||
if(auto_destroy)
|
||||
addtimer(CALLBACK(src, .proc/bust_open), 5 MINUTES)
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
muzzle_type = /obj/effect/projectile/muzzle/plasma_cutter
|
||||
impact_type = /obj/effect/projectile/impact/plasma_cutter
|
||||
|
||||
/obj/item/projectile/plasma/Initialize()
|
||||
/obj/item/projectile/plasma/Initialize(mapload)
|
||||
. = ..()
|
||||
if(!lavaland_equipment_pressure_check(get_turf(src)))
|
||||
name = "weakened [name]"
|
||||
|
||||
Reference in New Issue
Block a user