some moire

This commit is contained in:
Kashargul
2024-12-06 21:54:05 +01:00
parent 80edcd2c3d
commit 429398bdd7
231 changed files with 2484 additions and 1945 deletions
+1 -1
View File
@@ -89,7 +89,7 @@
O.item = src
O.s_loc = user.loc
O.t_loc = M.loc
O.place = "fuel"
O.place = REAGENT_ID_FUEL
M.requests += O
spawn( 0 )
O.process()
@@ -67,7 +67,7 @@ var/list/fusion_reactions
/decl/fusion_reaction/deuterium_lithium
p_react = "deuterium"
s_react = "lithium"
s_react = REAGENT_ID_LITHIUM
energy_consumption = 2
energy_production = 0
radiation = 3
@@ -82,7 +82,7 @@ var/list/fusion_reactions
energy_production = 0
instability = 5
radiation = 5
products = list("silicon"= 1)
products = list(REAGENT_ID_SILICON= 1)
/decl/fusion_reaction/iron_iron
p_react = REAGENT_ID_IRON
@@ -270,7 +270,7 @@
*/
/datum/particle_smasher_recipe
var/list/reagents // example: = list("pacid" = 5)
var/list/reagents // example: = list(REAGENT_ID_PACID = 5)
var/list/items // example: = list(/obj/item/tool/crowbar, /obj/item/welder) Place /foo/bar before /foo. Do not include fruit. Maximum of 3 items.
var/recipe_type = PS_RESULT_STACK // Are we producing a stack or an item?
@@ -319,7 +319,7 @@
return .
/datum/particle_smasher_recipe/deuterium_tritium
reagents = list("hydrogen" = 15)
reagents = list(REAGENT_ID_HYDROGEN = 15)
result = /obj/item/stack/material/tritium
required_material = /obj/item/stack/material/deuterium
@@ -349,7 +349,7 @@
probability = 10
/datum/particle_smasher_recipe/osmium_lead
reagents = list("tungsten" = 10)
reagents = list(REAGENT_ID_TUNGSTEN = 10)
result = /obj/item/stack/material/lead
required_material = /obj/item/stack/material/osmium
@@ -362,7 +362,7 @@
probability = 50
/datum/particle_smasher_recipe/phoron_valhollide
reagents = list(REAGENT_ID_PHORON = 10, "pacid" = 10)
reagents = list(REAGENT_ID_PHORON = 10, REAGENT_ID_PACID = 10)
result = /obj/item/stack/material/valhollide
required_material = /obj/item/stack/material/phoron