More fixes + Fluff.dm

Fluff.dm in hyperstation for more fun stuff that doesnt have a real value.
This commit is contained in:
QuoteFox
2020-03-12 11:37:17 +00:00
parent e70a0cc68c
commit 29a1dee2ac
6 changed files with 7230 additions and 124656 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -20,12 +20,12 @@
var/atom/inertia_last_loc
var/inertia_moving = 0
var/inertia_next_move = 0
var/inertia_move_delay = 7
var/inertia_move_delay = 10
var/pass_flags = 0
var/moving_diagonally = 0 //0: not doing a diagonal move. 1 and 2: doing the first/second step of the diagonal move
var/list/client_mobs_in_contents // This contains all the client mobs within this container
var/list/acted_explosions //for explosion dodging
glide_size = 9
glide_size = 7
appearance_flags = TILE_BOUND|PIXEL_SCALE
var/datum/forced_movement/force_moving = null //handled soley by forced_movement.dm
var/floating = FALSE

View File

@@ -0,0 +1,17 @@
/obj/structure/medscreen/
name = "medical screen"
desc = "No peaking now!"
icon_state = "screen"
icon = 'hyperstation/icons/obj/medical.dmi'
anchored = TRUE
resistance_flags = FLAMMABLE
max_integrity = 100
integrity_failure = 30
var/buildstacktype = /obj/item/stack/sheet/metal
var/buildstackamount = 2
density = TRUE
/obj/structure/medscreen/Moved()
. = ..()
if(has_gravity())
playsound(src, 'sound/effects/roll.ogg', 100, 1)

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -2875,6 +2875,7 @@
#include "hyperstation\code\mobs\werewolf.dm"
#include "hyperstation\code\modules\antagonists\werewolf\werewolf.dm"
#include "hyperstation\code\obj\decal.dm"
#include "hyperstation\code\obj\fluff.dm"
#include "hyperstation\code\obj\plushes.dm"
#include "hyperstation\code\obj\pregnancytester.dm"
#include "hyperstation\code\obj\rewards.dm"