mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-10 07:30:36 +01:00
implementing calorit (new mineral)
Just setting the scene for the item, basically. It doesn't have a single sprite yet, nor does it have any 'special' code
This commit is contained in:
@@ -278,6 +278,32 @@ GLOBAL_LIST_INIT(bananium_recipes, list ( \
|
||||
recipes = GLOB.bananium_recipes
|
||||
. = ..()
|
||||
|
||||
|
||||
/*
|
||||
* Calorit - GS13
|
||||
*/
|
||||
/obj/item/stack/sheet/mineral/calorit
|
||||
name = "calorit"
|
||||
icon_state = "sheet-calorit"
|
||||
item_state = "sheet-calorit"
|
||||
singular_name = "calorit sheet"
|
||||
sheettype = "calorit"
|
||||
materials = list(MAT_CALORIT=MINERAL_MATERIAL_AMOUNT)
|
||||
novariants = TRUE
|
||||
grind_results = list(/datum/reagent/consumable/lipoifier = 10)
|
||||
point_value = 40
|
||||
merge_type = /obj/item/stack/sheet/mineral/calorit
|
||||
|
||||
GLOBAL_LIST_INIT(calorit_recipes, list ( \
|
||||
new/datum/stack_recipe("calorit tile", /obj/item/stack/tile/mineral/calorit, 1, 4, 20), \
|
||||
// new/datum/stack_recipe("Fatty Statue", /obj/structure/statue/calorit/fatty, 5, one_per_turf = 1, on_floor = 1), \
|
||||
))
|
||||
|
||||
/obj/item/stack/sheet/mineral/calorit/Initialize(mapload, new_amount, merge = TRUE)
|
||||
recipes = GLOB.calorit_recipes
|
||||
. = ..()
|
||||
|
||||
|
||||
/*
|
||||
* Titanium
|
||||
*/
|
||||
@@ -447,4 +473,4 @@ GLOBAL_LIST_INIT(abductor_recipes, list ( \
|
||||
amount = 5
|
||||
|
||||
/obj/item/stack/sheet/mineral/coal/ten
|
||||
amount = 10
|
||||
amount = 10
|
||||
|
||||
@@ -52,6 +52,15 @@
|
||||
mineralType = "bananium"
|
||||
materials = list(MAT_BANANIUM=500)
|
||||
|
||||
/obj/item/stack/tile/mineral/calorit //GS13
|
||||
name = "calorit tile"
|
||||
singular_name = "calorit floor tile"
|
||||
desc = "A tile made out of calorit. Bwwooomphf."
|
||||
icon_state = "tile_calorit"
|
||||
turf_type = /turf/open/floor/mineral/calorit
|
||||
mineralType = "calorit"
|
||||
materials = list(MAT_CALORIT=500)
|
||||
|
||||
/obj/item/stack/tile/mineral/abductor
|
||||
name = "alien floor tile"
|
||||
singular_name = "alien floor tile"
|
||||
@@ -104,4 +113,4 @@
|
||||
icon_state = "tile_basaltstone"
|
||||
turf_type = /turf/open/floor/mineral/basaltstone_floor
|
||||
mineralType = "sandstone"
|
||||
materials = list(MAT_SANDSTONE=500)
|
||||
materials = list(MAT_SANDSTONE=500)
|
||||
|
||||
Reference in New Issue
Block a user