mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-08 00:21:43 +00:00
304 lines
11 KiB
Plaintext
304 lines
11 KiB
Plaintext
/*
|
|
Mineral Sheets
|
|
Contains:
|
|
- Sandstone
|
|
- Diamond
|
|
- Uranium
|
|
- Plasma
|
|
- Gold
|
|
- Silver
|
|
- Bananium
|
|
- Tranqillite
|
|
- Enriched Uranium
|
|
- Platinum
|
|
*/
|
|
|
|
var/global/list/datum/stack_recipe/sandstone_recipes = list ( \
|
|
new/datum/stack_recipe("pile of dirt", /obj/machinery/hydroponics/soil, 3, time = 10, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("sandstone door", /obj/structure/mineral_door/sandstone, 10, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe("Assistant Statue", /obj/structure/statue/sandstone/assistant, 5, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe("Breakdown into sand", /obj/item/stack/ore/glass, 1, one_per_turf = 0, on_floor = 1), \
|
|
)
|
|
|
|
var/global/list/datum/stack_recipe/silver_recipes = list ( \
|
|
new/datum/stack_recipe("silver door", /obj/structure/mineral_door/silver, 10, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe("silver tile", /obj/item/stack/tile/mineral/silver, 1, 4, 20), \
|
|
null, \
|
|
new/datum/stack_recipe("Janitor Statue", /obj/structure/statue/silver/janitor, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("Sec Officer Statue", /obj/structure/statue/silver/sec, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("Sec Borg Statue", /obj/structure/statue/silver/secborg, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("Med Doctor Statue", /obj/structure/statue/silver/md, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("Med Borg Statue", /obj/structure/statue/silver/medborg, 5, one_per_turf = 1, on_floor = 1), \
|
|
)
|
|
|
|
var/global/list/datum/stack_recipe/diamond_recipes = list ( \
|
|
new/datum/stack_recipe("diamond door", /obj/structure/mineral_door/transparent/diamond, 10, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe("diamond tile", /obj/item/stack/tile/mineral/diamond, 1, 4, 20), \
|
|
null, \
|
|
new/datum/stack_recipe("Captain Statue", /obj/structure/statue/diamond/captain, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("AI Hologram Statue", /obj/structure/statue/diamond/ai1, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("AI Core Statue", /obj/structure/statue/diamond/ai2, 5, one_per_turf = 1, on_floor = 1), \
|
|
)
|
|
|
|
var/global/list/datum/stack_recipe/uranium_recipes = list ( \
|
|
new/datum/stack_recipe("uranium door", /obj/structure/mineral_door/uranium, 10, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe("uranium tile", /obj/item/stack/tile/mineral/uranium, 1, 4, 20), \
|
|
null, \
|
|
new/datum/stack_recipe("Nuke Statue", /obj/structure/statue/uranium/nuke, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("Engineer Statue", /obj/structure/statue/uranium/eng, 5, one_per_turf = 1, on_floor = 1), \
|
|
)
|
|
|
|
var/global/list/datum/stack_recipe/gold_recipes = list ( \
|
|
new/datum/stack_recipe("golden door", /obj/structure/mineral_door/gold, 10, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe("gold tile", /obj/item/stack/tile/mineral/gold, 1, 4, 20), \
|
|
null, \
|
|
new/datum/stack_recipe("HoS Statue", /obj/structure/statue/gold/hos, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("HoP Statue", /obj/structure/statue/gold/hop, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("CE Statue", /obj/structure/statue/gold/ce, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("RD Statue", /obj/structure/statue/gold/rd, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("CMO Statue", /obj/structure/statue/gold/cmo, 5, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe("Simple Crown", /obj/item/clothing/head/crown, 5), \
|
|
)
|
|
|
|
var/global/list/datum/stack_recipe/plasma_recipes = list ( \
|
|
new/datum/stack_recipe/dangerous("plasma door", /obj/structure/mineral_door/transparent/plasma, 10, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe/dangerous("plasma tile", /obj/item/stack/tile/mineral/plasma, 1, 4, 20), \
|
|
null, \
|
|
new/datum/stack_recipe/dangerous("Scientist Statue", /obj/structure/statue/plasma/scientist, 5, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe/dangerous("Xenomorph Statue", /obj/structure/statue/plasma/xeno, 5, one_per_turf = 1, on_floor = 1), \
|
|
)
|
|
|
|
var/global/list/datum/stack_recipe/bananium_recipes = list ( \
|
|
new/datum/stack_recipe("bananium tile", /obj/item/stack/tile/mineral/bananium, 1, 4, 20), \
|
|
null, \
|
|
new/datum/stack_recipe("Clown Statue", /obj/structure/statue/bananium/clown, 5, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe("bananium computer frame", /obj/structure/computerframe/HONKputer, 50, time = 25, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("bananium grenade casing", /obj/item/grenade/bananade/casing, 4, on_floor = 1), \
|
|
)
|
|
|
|
var/global/list/datum/stack_recipe/tranquillite_recipes = list ( \
|
|
new/datum/stack_recipe("invisible wall", /obj/structure/barricade/mime, 5, one_per_turf = 1, on_floor = 1, time = 50), \
|
|
null, \
|
|
new/datum/stack_recipe("silent tile", /obj/item/stack/tile/mineral/tranquillite, 1, 4, 20), \
|
|
null, \
|
|
new/datum/stack_recipe("Mime Statue", /obj/structure/statue/tranquillite/mime, 5, one_per_turf = 1, on_floor = 1), \
|
|
)
|
|
|
|
var/global/list/datum/stack_recipe/abductor_recipes = list ( \
|
|
new/datum/stack_recipe("alien bed", /obj/structure/bed/abductor, 2, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("alien locker", /obj/structure/closet/abductor, 1, time = 15, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("alien table frame", /obj/structure/table_frame/abductor, 1, time = 15, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("alien airlock assembly", /obj/structure/door_assembly/door_assembly_abductor, 4, time = 20, one_per_turf = 1, on_floor = 1), \
|
|
null, \
|
|
new/datum/stack_recipe("alien floor tile", /obj/item/stack/tile/mineral/abductor, 1, 4, 20), \
|
|
)
|
|
|
|
/obj/item/stack/sheet/mineral
|
|
force = 5
|
|
throwforce = 5
|
|
throw_speed = 3
|
|
|
|
/obj/item/stack/sheet/mineral/New()
|
|
..()
|
|
pixel_x = rand(0,4)-4
|
|
pixel_y = rand(0,4)-4
|
|
|
|
/obj/item/stack/sheet/mineral/sandstone
|
|
name = "sandstone brick"
|
|
desc = "This appears to be a combination of both sand and stone."
|
|
singular_name = "sandstone brick"
|
|
icon_state = "sheet-sandstone"
|
|
throw_range = 5
|
|
origin_tech = "materials=1"
|
|
sheettype = "sandstone"
|
|
materials = list(MAT_GLASS=MINERAL_MATERIAL_AMOUNT)
|
|
|
|
/obj/item/stack/sheet/mineral/sandstone/New()
|
|
..()
|
|
recipes = sandstone_recipes
|
|
|
|
/obj/item/stack/sheet/mineral/diamond
|
|
name = "diamond"
|
|
icon_state = "sheet-diamond"
|
|
singular_name = "diamond"
|
|
origin_tech = "materials=6"
|
|
sheettype = "diamond"
|
|
materials = list(MAT_DIAMOND=MINERAL_MATERIAL_AMOUNT)
|
|
|
|
/obj/item/stack/sheet/mineral/diamond/New()
|
|
..()
|
|
recipes = diamond_recipes
|
|
|
|
/obj/item/stack/sheet/mineral/uranium
|
|
name = "uranium"
|
|
icon_state = "sheet-uranium"
|
|
singular_name = "uranium sheet"
|
|
origin_tech = "materials=5"
|
|
sheettype = "uranium"
|
|
materials = list(MAT_URANIUM=MINERAL_MATERIAL_AMOUNT)
|
|
|
|
/obj/item/stack/sheet/mineral/uranium/New()
|
|
..()
|
|
recipes = uranium_recipes
|
|
|
|
/obj/item/stack/sheet/mineral/plasma
|
|
name = "solid plasma"
|
|
icon_state = "sheet-plasma"
|
|
singular_name = "plasma sheet"
|
|
origin_tech = "plasmatech=2;materials=2"
|
|
sheettype = "plasma"
|
|
materials = list(MAT_PLASMA=MINERAL_MATERIAL_AMOUNT)
|
|
burn_state = FLAMMABLE
|
|
burntime = 5
|
|
|
|
/obj/item/stack/sheet/mineral/plasma/New()
|
|
..()
|
|
recipes = plasma_recipes
|
|
|
|
/obj/item/stack/sheet/mineral/plasma/attackby(obj/item/W, mob/user, params)
|
|
if(is_hot(W) > 300)//If the temperature of the object is over 300, then ignite
|
|
message_admins("Plasma sheets ignited by [key_name_admin(user)]([ADMIN_QUE(user,"?")]) ([ADMIN_FLW(user,"FLW")]) in ([x],[y],[z] - <A HREF='?_src_=holder;adminplayerobservecoodjump=1;X=[x];Y=[y];Z=[z]'>JMP</a>)",0,1)
|
|
log_game("Plasma sheets ignited by [key_name(user)] in ([x],[y],[z])")
|
|
investigate_log("was <font color='red'><b>ignited</b></font> by [key_name(user)]","atmos")
|
|
fire_act()
|
|
else
|
|
return ..()
|
|
|
|
/obj/item/stack/sheet/mineral/plasma/fire_act()
|
|
atmos_spawn_air(SPAWN_HEAT | SPAWN_TOXINS, amount*10)
|
|
qdel(src)
|
|
|
|
/obj/item/stack/sheet/mineral/gold
|
|
name = "gold"
|
|
icon_state = "sheet-gold"
|
|
singular_name = "gold bar"
|
|
origin_tech = "materials=4"
|
|
sheettype = "gold"
|
|
materials = list(MAT_GOLD=MINERAL_MATERIAL_AMOUNT)
|
|
|
|
/obj/item/stack/sheet/mineral/gold/New()
|
|
..()
|
|
recipes = gold_recipes
|
|
|
|
/obj/item/stack/sheet/mineral/silver
|
|
name = "silver"
|
|
icon_state = "sheet-silver"
|
|
singular_name = "silver bar"
|
|
origin_tech = "materials=4"
|
|
sheettype = "silver"
|
|
materials = list(MAT_SILVER=MINERAL_MATERIAL_AMOUNT)
|
|
|
|
/obj/item/stack/sheet/mineral/silver/New()
|
|
..()
|
|
recipes = silver_recipes
|
|
|
|
/obj/item/stack/sheet/mineral/bananium
|
|
name = "bananium"
|
|
icon_state = "sheet-clown"
|
|
singular_name = "bananium sheet"
|
|
origin_tech = "materials=4"
|
|
sheettype = "bananium"
|
|
materials = list(MAT_BANANIUM=MINERAL_MATERIAL_AMOUNT)
|
|
|
|
/obj/item/stack/sheet/mineral/bananium/New(loc, amount=null)
|
|
..()
|
|
recipes = bananium_recipes
|
|
|
|
/obj/item/stack/sheet/mineral/tranquillite
|
|
name = "tranquillite"
|
|
icon_state = "sheet-mime"
|
|
singular_name = "beret"
|
|
origin_tech = "materials=4"
|
|
sheettype = "tranquillite"
|
|
materials = list(MAT_TRANQUILLITE=MINERAL_MATERIAL_AMOUNT)
|
|
wall_allowed = FALSE //no tranquilite walls in code
|
|
|
|
/obj/item/stack/sheet/mineral/tranquillite/New(loc, amount=null)
|
|
..()
|
|
recipes = tranquillite_recipes
|
|
|
|
/*
|
|
* Titanium
|
|
*/
|
|
/obj/item/stack/sheet/mineral/titanium
|
|
name = "titanium"
|
|
icon_state = "sheet-titanium"
|
|
item_state = "sheet-metal"
|
|
singular_name = "titanium sheet"
|
|
force = 5
|
|
throwforce = 5
|
|
w_class = WEIGHT_CLASS_NORMAL
|
|
throw_speed = 1
|
|
throw_range = 3
|
|
sheettype = "titanium"
|
|
materials = list(MAT_TITANIUM=MINERAL_MATERIAL_AMOUNT)
|
|
|
|
var/global/list/datum/stack_recipe/titanium_recipes = list (
|
|
new/datum/stack_recipe("titanium tile", /obj/item/stack/tile/mineral/titanium, 1, 4, 20),
|
|
new/datum/stack_recipe("surgical tray", /obj/structure/table/tray, 2, one_per_turf = 1, on_floor = 1),
|
|
)
|
|
|
|
/obj/item/stack/sheet/mineral/titanium/New(loc, amount=null)
|
|
recipes = titanium_recipes
|
|
..()
|
|
|
|
/obj/item/stack/sheet/mineral/titanium/fifty
|
|
amount = 50
|
|
|
|
|
|
/*
|
|
* Plastitanium
|
|
*/
|
|
/obj/item/stack/sheet/mineral/plastitanium
|
|
name = "plastitanium"
|
|
icon_state = "sheet-plastitanium"
|
|
item_state = "sheet-metal"
|
|
singular_name = "plastitanium sheet"
|
|
force = 5
|
|
throwforce = 5
|
|
w_class = WEIGHT_CLASS_NORMAL
|
|
throw_speed = 1
|
|
throw_range = 3
|
|
sheettype = "plastitanium"
|
|
materials = list(MAT_TITANIUM=2000, MAT_PLASMA=2000)
|
|
|
|
var/global/list/datum/stack_recipe/plastitanium_recipes = list (
|
|
new/datum/stack_recipe("plas-titanium tile", /obj/item/stack/tile/mineral/plastitanium, 1, 4, 20),
|
|
)
|
|
|
|
/obj/item/stack/sheet/mineral/plastitanium/New(loc, amount=null)
|
|
recipes = plastitanium_recipes
|
|
..()
|
|
|
|
/obj/item/stack/sheet/mineral/enruranium
|
|
name = "enriched uranium"
|
|
icon_state = "sheet-enruranium"
|
|
origin_tech = "materials=6"
|
|
materials = list(MAT_URANIUM=3000)
|
|
|
|
//Alien Alloy
|
|
/obj/item/stack/sheet/mineral/abductor
|
|
name = "alien alloy"
|
|
icon = 'icons/obj/abductor.dmi'
|
|
icon_state = "sheet-abductor"
|
|
singular_name = "alien alloy sheet"
|
|
force = 5
|
|
throwforce = 5
|
|
w_class = WEIGHT_CLASS_NORMAL
|
|
throw_speed = 1
|
|
origin_tech = "materials=6;abductor=1"
|
|
sheettype = "abductor"
|
|
|
|
/obj/item/stack/sheet/mineral/abductor/New(loc, amount=null)
|
|
recipes = abductor_recipes
|
|
..()
|