mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-13 03:02:38 +00:00
players can now download their very own virtual pet through a new PDA app. this pet is called orbie and u can interact with him in alot of unique ways happiness can be increased by regularly grooming ur pet, feeding him, or u can arrange with other players playdates for ur pets, they can play with each other and both their happiness will increase u can get food from ur pet through ur pda, it will assign u a random drop zone location in the station u need to go to, after which u can obtain ur pet's food then ur PDA will spawn a virtual chocolate bar that ur pet loves to eat. it wont assign u dropzone locations that are restricted or hard to reach, however if the area it assigns u is a bit difficult to get to, u can reroll the location after a small cooldown u can also level up ur pet to make it gain new helpful abilities and more cosmetic options. the main way to level up ur pet is by walking it, so u can have it follow u while u are doing ur job on the station and it will passively get exp. u get an increased exp modifier per step if ur pet is happy and not hungry. At level 2, ur pet will gain an ability to toggle lights and will also read outloud to u any PDA messages u recieve. at level 3, ur pet gains a camera ability. u can command it to take a photo afterwhich the picture will be saved directly in ur pda u also have alot of customization options for ur pet! u can change its color, name, gender, and u can make it wear hats! u can unlock more hats for ur pet if u level it up further. these customizations change ur pet's hologram appearance as well as its profile picture on the pet network. u can view how other player's virtual pets are progressing through the pet network. each time ur pet reaches a new milestone, an update will automatically be sent out on the network if ur pet's milestones gets likes from other players, it will become happier this app also allows u to program new tricks for ur pet. U can create a custom trick sequence, and change the trick's name. If u say the trick's name outloud to ur pet it will do the sequence u programmed.
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
/datum/element/cleaning
|
|
|
|
/datum/element/cleaning/Attach(datum/target)
|
|
. = ..()
|
|
if(!ismovable(target))
|
|
return ELEMENT_INCOMPATIBLE
|
|
RegisterSignal(target, COMSIG_MOVABLE_MOVED, PROC_REF(clean))
|
|
|
|
/datum/element/cleaning/Detach(datum/target)
|
|
. = ..()
|
|
UnregisterSignal(target, COMSIG_MOVABLE_MOVED)
|
|
|
|
/datum/element/cleaning/proc/clean(datum/source)
|
|
SIGNAL_HANDLER
|
|
|
|
var/atom/movable/atom_movable = source
|
|
var/turf/tile = atom_movable.loc
|
|
if(!isturf(tile))
|
|
return
|
|
|
|
tile.wash(CLEAN_SCRUB)
|
|
for(var/atom/cleaned as anything in tile)
|
|
// Clean small items that are lying on the ground
|
|
if(isitem(cleaned))
|
|
var/obj/item/cleaned_item = cleaned
|
|
if(cleaned_item.w_class <= WEIGHT_CLASS_SMALL)
|
|
cleaned_item.wash(CLEAN_SCRUB)
|
|
continue
|
|
// Clean humans that are lying down
|
|
if(!ishuman(cleaned))
|
|
continue
|
|
var/mob/living/carbon/human/cleaned_human = cleaned
|
|
if(cleaned_human.body_position == LYING_DOWN)
|
|
cleaned_human.wash(CLEAN_SCRUB)
|
|
cleaned_human.regenerate_icons()
|
|
to_chat(cleaned_human, span_danger("[atom_movable] cleans your face!"))
|