mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-28 06:28:01 +01:00
New to init final (#17512)
* Initial * some more * next few * only light left * fix things up * some rmore fixes * guh * Update ai_vr.dm * comment * lets try something * . * hmm * . * . * hmm * push that here * fix layout * grrr
This commit is contained in:
@@ -44,14 +44,14 @@
|
||||
name = "TTV bomb - proximity"
|
||||
assembly_type = /obj/item/assembly/prox_sensor
|
||||
|
||||
/obj/effect/spawner/newbomb/radio/custom/New(var/newloc, ph, ox, co)
|
||||
/obj/effect/spawner/newbomb/radio/custom/Initialize(mapload, ph, ox, co)
|
||||
if(ph != null) phoron_amt = ph
|
||||
if(ox != null) oxygen_amt = ox
|
||||
if(co != null) carbon_amt = co
|
||||
..()
|
||||
. = ..()
|
||||
|
||||
/obj/effect/spawner/newbomb/Initialize(mapload)
|
||||
..()
|
||||
. = ..()
|
||||
var/obj/item/transfer_valve/V = new(src.loc)
|
||||
var/obj/item/tank/phoron/PT = new(V)
|
||||
var/obj/item/tank/oxygen/OT = new(V)
|
||||
@@ -100,8 +100,8 @@
|
||||
var/phoron_amt = 0
|
||||
var/oxygen_amt = 0
|
||||
|
||||
/obj/effect/spawner/onetankbomb/New(newloc) //just needs an assembly.
|
||||
..(newloc)
|
||||
/obj/effect/spawner/onetankbomb/Initialize(mapload) //just needs an assembly.
|
||||
. = ..()
|
||||
|
||||
var/type = pick(/obj/item/tank/phoron/onetankbomb, /obj/item/tank/oxygen/onetankbomb)
|
||||
new type(src.loc)
|
||||
@@ -116,8 +116,8 @@
|
||||
// var/assembly_type = /obj/item/assembly/signaler
|
||||
|
||||
//Note that the maximum amount of gas you can put in a 70L air tank at 1013.25 kPa and 519K is 16.44 mol.
|
||||
/obj/effect/spawner/onetankbomb/full/New(newloc) //just needs an assembly.
|
||||
..(newloc)
|
||||
/obj/effect/spawner/onetankbomb/full/Initialize(mapload) //just needs an assembly.
|
||||
. = ..()
|
||||
|
||||
var/type = pick(/obj/item/tank/phoron/onetankbomb/full, /obj/item/tank/oxygen/onetankbomb/full)
|
||||
new type(src.loc)
|
||||
@@ -132,8 +132,8 @@
|
||||
// var/assembly_type = /obj/item/assembly/signaler
|
||||
|
||||
//Note that the maximum amount of gas you can put in a 70L air tank at 1013.25 kPa and 519K is 16.44 mol.
|
||||
/obj/effect/spawner/onetankbomb/full/New(newloc) //just needs an assembly.
|
||||
..(newloc)
|
||||
/obj/effect/spawner/onetankbomb/full/Initialize(mapload) //just needs an assembly.
|
||||
. = ..()
|
||||
|
||||
var/type = pick(/obj/item/tank/phoron/onetankbomb/full, /obj/item/tank/oxygen/onetankbomb/full)
|
||||
new type(src.loc)
|
||||
|
||||
Reference in New Issue
Block a user