mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-06 07:23:16 +00:00
Conflicts: baystation12.dme code/__HELPERS/global_lists.dm code/__HELPERS/type2type.dm code/__HELPERS/unsorted.dm code/datums/datumvars.dm code/datums/disease.dm code/datums/organs/organ_external.dm code/datums/supplypacks.dm code/defines/obj.dm code/game/area/areas.dm code/game/atoms.dm code/game/gamemodes/cult/cult_structures.dm code/game/gamemodes/cult/runes.dm code/game/gamemodes/events.dm code/game/gamemodes/events/ninja_equipment.dm code/game/gamemodes/events/space_ninja.dm code/game/gamemodes/game_mode.dm code/game/gamemodes/gameticker.dm code/game/hud.dm code/game/jobs/access.dm code/game/jobs/job/civilian.dm code/game/machinery/alarm.dm code/game/machinery/cloning.dm code/game/machinery/computer/cloning.dm code/game/machinery/computer/medical.dm code/game/machinery/computer/syndicate_shuttle.dm code/game/machinery/telecomms/broadcaster.dm code/game/machinery/telecomms/machine_interactions.dm code/game/objects/effects/decals/contraband.dm code/game/objects/effects/signs.dm code/game/objects/items/devices/PDA/PDA.dm code/game/objects/items/devices/PDA/cart.dm code/game/objects/items/weapons/photography.dm code/game/objects/structures/door_assembly.dm code/game/objects/structures/window.dm code/game/sound.dm code/game/verbs/ooc.dm code/global.dm code/modules/DetectiveWork/detective_work.dm code/modules/DetectiveWork/evidence.dm code/modules/DetectiveWork/footprints_and_rag.dm code/modules/DetectiveWork/scanner.dm code/modules/admin/player_panel.dm code/modules/admin/verbs/adminhelp.dm code/modules/admin/verbs/adminpm.dm code/modules/awaymissions/gateway.dm code/modules/client/client defines.dm code/modules/client/client procs.dm code/modules/client/preferences.dm code/modules/clothing/spacesuits/rig.dm code/modules/mining/machine_processing.dm code/modules/mining/machine_stacking.dm code/modules/mining/mint.dm code/modules/mining/ores_coins.dm code/modules/mining/satchel_ore_boxdm.dm code/modules/mob/living/carbon/alien/alien.dm code/modules/mob/living/carbon/carbon.dm code/modules/mob/living/carbon/carbon_defines.dm code/modules/mob/living/carbon/human/human_damage.dm code/modules/mob/living/carbon/human/life.dm code/modules/mob/living/carbon/human/update_icons.dm code/modules/mob/living/living.dm code/modules/mob/living/say.dm code/modules/mob/mob.dm code/modules/mob/mob_cleanup.dm code/modules/mob/mob_defines.dm code/modules/mob/mob_transformation_simple.dm code/modules/mob/new_player/login.dm code/modules/mob/new_player/new_player.dm code/modules/mob/new_player/preferences_setup.dm code/modules/mob/new_player/savefile.dm code/modules/mob/new_player/sprite_accessories.dm code/modules/paperwork/folders.dm code/modules/paperwork/paper.dm code/modules/paperwork/photocopier.dm code/modules/projectiles/guns/energy/special.dm code/modules/projectiles/guns/projectile/automatic.dm code/setup.dm code/unused/mining/datum_processing_recipe.dm code/unused/powerarmor/powerarmor.dm code/world.dm html/changelog.html icons/effects/96x96.dmi icons/mob/head.dmi icons/mob/items_lefthand.dmi icons/mob/items_righthand.dmi icons/mob/suit.dmi icons/obj/clothing/hats.dmi icons/obj/clothing/suits.dmi icons/obj/hydroponics.dmi icons/obj/items.dmi icons/turf/areas.dmi icons/turf/walls.dmi maps/RandomZLevels/fileList.txt maps/RandomZLevels/spacebattle.dmm Signed-off-by: Cael_Aislinn <cael_aislinn@yahoo.com.au>
57 lines
1.2 KiB
Plaintext
57 lines
1.2 KiB
Plaintext
/obj/structure/cult
|
|
density = 1
|
|
anchored = 1
|
|
icon = 'icons/obj/cult.dmi'
|
|
|
|
/obj/structure/cult/talisman
|
|
name = "Altar"
|
|
desc = "A bloodstained altar dedicated to Nar-Sie"
|
|
icon_state = "talismanaltar"
|
|
|
|
|
|
/obj/structure/cult/forge
|
|
name = "Daemon forge"
|
|
desc = "A forge used in crafting the unholy weapons used by the armies of Nar-Sie"
|
|
icon_state = "forge"
|
|
|
|
/obj/structure/cult/pylon
|
|
name = "Pylon"
|
|
desc = "A floating crystal that hums with an unearthly energy"
|
|
icon_state = "pylon"
|
|
luminosity = 5
|
|
|
|
|
|
/obj/structure/cult/tome
|
|
name = "Desk"
|
|
desc = "A desk covered in arcane manuscripts and tomes in unknown languages. Looking at the text makes your skin crawl"
|
|
icon_state = "tomealtar"
|
|
// luminosity = 5
|
|
|
|
//sprites for this no longer exist -Pete
|
|
//(they were stolen from another game anyway)
|
|
/*
|
|
/obj/structure/cult/pillar
|
|
name = "Pillar"
|
|
desc = "This should not exist"
|
|
icon_state = "pillar"
|
|
icon = 'magic_pillar.dmi'
|
|
*/
|
|
|
|
/obj/effect/gateway
|
|
name = "gateway"
|
|
desc = "You're pretty sure that abyss is staring back"
|
|
icon = 'icons/obj/cult.dmi'
|
|
icon_state = "hole"
|
|
density = 1
|
|
unacidable = 1
|
|
anchored = 1.0
|
|
|
|
/obj/effect/gateway/Bumped(mob/M as mob|obj)
|
|
spawn(0)
|
|
return
|
|
return
|
|
|
|
/obj/effect/gateway/HasEntered(AM as mob|obj)
|
|
spawn(0)
|
|
return
|
|
return |