User:RaveRadbury: Difference between revisions

From BeeStation Wiki
Jump to navigation Jump to search
imported>RaveRadbury
imported>RaveRadbury
Line 33: Line 33:


Summary: Sec (why?), Science, Engi, Medical, Cargo, Food Service (Also odd)
Summary: Sec (why?), Science, Engi, Medical, Cargo, Food Service (Also odd)
== Quirk I'd like to add. (Incomplete) ==
/datum/quirk/nocommon
name = "Uncultured"
desc = "For one reason or another you never learned galactic common."
value = 0
mob_trait = TRAIT_NOCOMMON
gain_text = "<span class='danger'>You do not understand galactic common.</span>"
lose_text = "<span class='notice'>You suddenly understand galactic common.</span>"
/datum/quirk/nocommon/on_spawn()
var/mob/living/carbon/human/H = quirk_holder
H.remove_language(/datum/language/common)
/// Not sure if I'm calling the right filepaths or even using the syntax correctly. Need to test and figure it out.

Revision as of 17:19, 17 March 2019

I'm new and stuff. As a fresh set of eyes I'm noticing that the wiki is out of date so I'm taking a moment to maintain the wiki for the people who come after me.

sandbox

Job Access sorted by category.

ACCESS_MAINT_TUNNELS HoS, RD, HoP, CE, CMO, Warden, Security, Detective, QM, Cargo Tech, Shaft Miner (Additional), Engi, Atmos Tech, Janitor, Assistant

Summary: Heads, Sec, Cargo, Engineering

ACCESS_WEAPONS (Allowed to have Weapons)

HoS, Warden, Detective, Sec, HoP, Bartender

Summary: Sec, HoP, guy with a gun

ACCESS_CONSTRUCTION

HoP, HoS, CE, Engi, Atmos, Sec, Curator

Summary: Hop, Sec, Engi, Gimmick

ACCESS_MORGUE

HoP, HoS, CMO, RD, Warden, Sec, Detective, Doc, Chemist, Genetecist, Virologist, Roboticist, Botanist, Chaplain, Cook, Bartender

Summary: People who need it for deposits or withdrawals. Not sure about Chemist and Virologist, but hey, medical.

ACCESS_MINERAL_STOREROOM

Janitor, Bartender, Botanist, Cargo Tech, QM, Roboticist, Scientist, Atmos Tech, Chemist, Cook, Genetecist, Doc, Viro, CMO, Detective, RD, Engi, Warden, CE, HoP, HoS, Miner, SeC

Summary: Sec (why?), Science, Engi, Medical, Cargo, Food Service (Also odd)


Quirk I'd like to add. (Incomplete)

/datum/quirk/nocommon name = "Uncultured" desc = "For one reason or another you never learned galactic common." value = 0 mob_trait = TRAIT_NOCOMMON gain_text = "You do not understand galactic common." lose_text = "You suddenly understand galactic common." /datum/quirk/nocommon/on_spawn() var/mob/living/carbon/human/H = quirk_holder H.remove_language(/datum/language/common) /// Not sure if I'm calling the right filepaths or even using the syntax correctly. Need to test and figure it out.