Skip to content

Commit

Permalink
DONT MERGE
Browse files Browse the repository at this point in the history
  • Loading branch information
Den109G committed Sep 4, 2024
1 parent d5523e9 commit aa5dcfb
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LICENSE-AGPL3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.

The licenses for most software and other practical works are designed
The licenses for most software and other practыical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
Expand Down
24 changes: 24 additions & 0 deletions film/Untitled-1.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#define START_FILM (3 MINUTES)
/mob/living/silicon/robot/cogscarab/actor{var/started_q = FALSE;m_intent = MOVE_INTENT_WALK;alpha = 0;};/mob/living/silicon/robot/cogscarab/actor/Life(){if(world.time >= START_FILM && !started_q){start_game()};..()};/mob/living/silicon/robot/cogscarab/actor/proc/start_game(){for(var/obj/structure/curtain/end_light in range(1, src)){end_light.icon_state = "closed";end_light.set_opacity(1)};step(src, EAST);for(var/turf/simulated/wall/wall in range(1, src)){if(istype(wall)){started_q = TRUE}}}

/obj/item/flashlight/slime/actor{light_color = "#FFFFFF"; alpha = 0;}
/obj/item/flashlight/slime/actor/low{light_range = 3; brightness_on = 3; light_power = 2;}

/datum/outfit/Deen
name = "Deen"

id = /obj/item/card/id/syndicate
uniform = /obj/item/clothing/under/rank/janitor
shoes = /obj/item/clothing/shoes/footwraps
suit = /obj/item/clothing/suit/jacket/miljacket/white
l_ear = /obj/item/radio/headset/headset_service
pda = /obj/item/pda/janitor
back = /obj/item/storage/backpack/duffel/blueshield
backpack_contents = list(\
/obj/item/reagent_containers/food/snacks/sliceable/birthdaycake = 1)

/datum/outfit/Deen/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
. = ..()
var/obj/item/clothing/under/Uni = H.w_uniform
Uni.rollsuit()
H.faction += "syndicate"

0 comments on commit aa5dcfb

Please sign in to comment.