mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
Various things and floors no longer associate with dirt
This commit is contained in:
@@ -14,6 +14,8 @@ var/list/turf_edge_cache = list()
|
|||||||
icon_state = null
|
icon_state = null
|
||||||
edge_blending_priority = 1
|
edge_blending_priority = 1
|
||||||
outdoors = TRUE // This variable is used for weather effects.
|
outdoors = TRUE // This variable is used for weather effects.
|
||||||
|
can_dirty = FALSE // Looks hideous with dirt on it.
|
||||||
|
|
||||||
// When a turf gets demoted or promoted, this list gets adjusted. The top-most layer is the layer on the bottom of the list, due to how pop() works.
|
// When a turf gets demoted or promoted, this list gets adjusted. The top-most layer is the layer on the bottom of the list, due to how pop() works.
|
||||||
var/list/turf_layers = list(/turf/simulated/floor/outdoors/rocks)
|
var/list/turf_layers = list(/turf/simulated/floor/outdoors/rocks)
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,8 @@
|
|||||||
edge_blending_priority = -1
|
edge_blending_priority = -1
|
||||||
movement_cost = 4
|
movement_cost = 4
|
||||||
outdoors = TRUE
|
outdoors = TRUE
|
||||||
|
can_dirty = FALSE // It's water
|
||||||
|
|
||||||
var/depth = 1 // Higher numbers indicates deeper water.
|
var/depth = 1 // Higher numbers indicates deeper water.
|
||||||
|
|
||||||
/turf/simulated/floor/water/initialize()
|
/turf/simulated/floor/water/initialize()
|
||||||
|
|||||||
@@ -18,6 +18,8 @@ var/list/mining_overlay_cache = list()
|
|||||||
blocks_air = 1
|
blocks_air = 1
|
||||||
temperature = T0C
|
temperature = T0C
|
||||||
|
|
||||||
|
can_dirty = FALSE
|
||||||
|
|
||||||
var/ore/mineral
|
var/ore/mineral
|
||||||
var/sand_dug
|
var/sand_dug
|
||||||
var/mined_ore = 0
|
var/mined_ore = 0
|
||||||
|
|||||||
@@ -7,6 +7,8 @@
|
|||||||
universal_speak = 1
|
universal_speak = 1
|
||||||
density = 0
|
density = 0
|
||||||
|
|
||||||
|
makes_dirt = FALSE // No more dirt from Beepsky
|
||||||
|
|
||||||
var/obj/item/weapon/card/id/botcard = null
|
var/obj/item/weapon/card/id/botcard = null
|
||||||
var/list/botcard_access = list()
|
var/list/botcard_access = list()
|
||||||
var/on = 1
|
var/on = 1
|
||||||
|
|||||||
@@ -11,6 +11,8 @@
|
|||||||
var/icon_state_override = null // Used for special slime appearances like the rainbow slime.
|
var/icon_state_override = null // Used for special slime appearances like the rainbow slime.
|
||||||
pass_flags = PASSTABLE
|
pass_flags = PASSTABLE
|
||||||
|
|
||||||
|
makes_dirt = FALSE // Goop
|
||||||
|
|
||||||
speak_emote = list("chirps")
|
speak_emote = list("chirps")
|
||||||
|
|
||||||
maxHealth = 150
|
maxHealth = 150
|
||||||
|
|||||||
Reference in New Issue
Block a user