Adhomai Glow Up (#15746)

This commit is contained in:
Alberyk
2023-02-09 00:22:08 -03:00
committed by GitHub
parent 0e6005521d
commit ab44759f82
40 changed files with 214 additions and 112 deletions
@@ -0,0 +1,40 @@
//tree
/obj/structure/flora/tree/adhomai
icon = 'icons/obj/flora/adhomai_trees.dmi'
icon_state = "tree1"
pixel_x = -32
/obj/structure/flora/tree/adhomai/Initialize(mapload)
. = ..()
icon_state = "tree[rand(1, 13)]"
//bushes
/obj/structure/flora/bush/adhomai
icon = 'icons/obj/flora/adhomai_flora.dmi'
icon_state = "bush1"
anchored = 1
/obj/structure/flora/bush/adhomai/Initialize(mapload)
. = ..()
icon_state = "bush[rand(1, 7)]"
//grass
/obj/structure/flora/grass/adhomai
icon = 'icons/obj/flora/adhomai_flora.dmi'
icon_state = "grass1"
/obj/structure/flora/grass/adhomai/Initialize(mapload)
. = ..()
icon_state = "grass[rand(1, 4)]"
//rock
/obj/structure/flora/rock/adhomai
icon = 'icons/obj/flora/adhomai_flora.dmi'
icon_state = "rock1"
/obj/structure/flora/rock/adhomai/Initialize(mapload)
. = ..()
icon_state = "rock[rand(1, 5)]"