mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Outsider Buff - Fiber Addition (#8586)
This commit is contained in:
@@ -135,12 +135,14 @@ GLOBAL_LIST_INIT(grass_grass,list(
|
||||
),
|
||||
"sif" = list(
|
||||
/obj/structure/flora/sif/eyes = 1,
|
||||
/obj/structure/flora/sif/tendrils = 10
|
||||
/obj/structure/flora/sif/tendrils = 5,
|
||||
/obj/structure/flora/bush = 5
|
||||
),
|
||||
"sifforest" = list(
|
||||
/obj/structure/flora/sif/frostbelle = 1,
|
||||
/obj/structure/flora/sif/eyes = 5,
|
||||
/obj/structure/flora/sif/tendrils = 30
|
||||
/obj/structure/flora/sif/tendrils = 20,
|
||||
/obj/structure/flora/bush = 10
|
||||
),
|
||||
"valley" = list(
|
||||
/obj/structure/flora/sif/eyes = 20,
|
||||
|
||||
@@ -123,3 +123,19 @@
|
||||
time = 60
|
||||
category = CAT_WEAPONRY
|
||||
subcategory = CAT_WEAPON
|
||||
|
||||
|
||||
//SS13 survivial part 1 aka me giving outsiders easier access to some things.
|
||||
/datum/crafting_recipe/sandstone
|
||||
name = "sandstone brick"
|
||||
result = /obj/item/stack/material/sandstone
|
||||
reqs = list(/obj/item/weapon/ore/glass = 4)
|
||||
time = 10 //Not realstic but I don't want to waste too much time.
|
||||
category = CAT_PRIMAL
|
||||
|
||||
/datum/crafting_recipe/marble
|
||||
name = "marble brick"
|
||||
result = /obj/item/stack/material/marble
|
||||
reqs = list(/obj/item/weapon/ore/marble = 4)
|
||||
time = 10 //Not realstic but I don't want to waste too much time.
|
||||
category = CAT_PRIMAL
|
||||
2
modular_chomp/code/game/objects/structures/flora.dm
Normal file
2
modular_chomp/code/game/objects/structures/flora.dm
Normal file
@@ -0,0 +1,2 @@
|
||||
/obj/structure/flora/bush
|
||||
max_harvests = 6 //Buffing this so outsiders aren't at each others throats for fiber.
|
||||
@@ -4747,6 +4747,7 @@
|
||||
#include "modular_chomp\code\game\objects\random\mapping.dm"
|
||||
#include "modular_chomp\code\game\objects\random\misc.dm"
|
||||
#include "modular_chomp\code\game\objects\structures\desert_planet_structures.dm"
|
||||
#include "modular_chomp\code\game\objects\structures\flora.dm"
|
||||
#include "modular_chomp\code\game\objects\structures\gargoyle.dm"
|
||||
#include "modular_chomp\code\game\objects\structures\holosign.dm"
|
||||
#include "modular_chomp\code\game\objects\structures\loot_pile.dm"
|
||||
|
||||
Reference in New Issue
Block a user