/datum/citizenship/jargon name = CITIZENSHIP_JARGON description = "Home of the Skrell, a centralized union of solar systems run by councilors of different ranks and positions. The capital of the Federation is located at the city of \ Kal'lo on the core planet Jargon IV, also known as Qerrbalak, within the Jargon system. While the majority of Skrell live within the Jargon Federation, a sizable portion live \ abroad. The quality of life within Federation is considered to be the best in the galaxy due to their technological advances, allowing Federation Citizens access to a quality of \ life almost unmatched anywhere else in the Spur. \ A rogue artificial intelligence, Glorsh-Omega, has traumatized this nation for centuries to come. The Federation is very wary of humanity, who has acquired AI technology \ after a Federation tech leak provided them with the research required to create their own AI, as well as allowing them to create IPCs." consular_outfit = /datum/outfit/job/representative/consular/jargon job_species_blacklist = list( "Consular Officer" = list( SPECIES_HUMAN, SPECIES_HUMAN_OFFWORLD, SPECIES_IPC, SPECIES_IPC_BISHOP, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_SHELL, SPECIES_IPC_UNBRANDED, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_DIONA_COEUS, SPECIES_TAJARA, SPECIES_TAJARA_MSAI, SPECIES_TAJARA_ZHAN, SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_BULWARK ) ) /datum/citizenship/jargon/get_objectives(mission_level, var/mob/living/carbon/human/H) var/rep_objectives switch(mission_level) if(REPRESENTATIVE_MISSION_HIGH) rep_objectives = pick("Some Skrell are not part of the Federation; attempt to convince them to become a citizen", "Acquire information on dissidents towards the Federation, forwarding it to the embassy", "Curtail the spreading of written literature or verbal notions that contain negative connotations towards the Federation") if(REPRESENTATIVE_MISSION_MEDIUM) rep_objectives = pick("Ensure the interests of Federation citizens are upheld by the vessel. This includes C'thur and Diona of Federation origin", "Legally curtail the advancements and liberal thinking towards synthetics", "The [current_map.station_name] hosts some of the brightest minds in the galaxy; winning them over towards the Federation is a major victory") else rep_objectives = pick("Consider assisting crew within the capacity of your role, an altruistic image is good PR towards the federation", "Some Skrell are not part of the Federation; attempt to convince them to become a citizen") return rep_objectives /datum/outfit/job/representative/consular/jargon name = "Jargon Consular Officer" uniform = /obj/item/clothing/under/skrell /datum/outfit/job/representative/consular/jargon/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) if(H && !visualsOnly) if(isvaurca(H)) // there should be a system for this but for now this will have to do i guess H.equip_to_slot_or_del(new /obj/item/clothing/under/gearharness(H), slot_w_uniform) H.equip_to_slot_or_del(new /obj/item/clothing/head/vaurca_breeder/jargon(H), slot_head) H.equip_to_slot_or_del(new /obj/item/clothing/shoes/vaurca/breeder/jargon(H), slot_shoes) H.equip_to_slot_or_del(new /obj/item/clothing/mask/breath/vaurca/filter(H), slot_wear_mask) H.equip_to_slot_or_del(new /obj/item/clothing/suit/vaurca/breeder/jargon(H), slot_wear_suit) H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec/cthur(H), slot_back) else addtimer(CALLBACK(src, .proc/send_representative_mission, H), 5 MINUTES) return TRUE /datum/citizenship/epsilon name = CITIZENSHIP_EUM description = "An independent nation on the edge of Skrell space, the Co-Operative Territories of Epsilon Ursae Minoris, \ also known as the CT-EUM, is a nation primarily comprised of Dionae with a minority of skrell mostly situated \ in the city of Nral'Daaq. The CT-EUM is compromised of a myriad of smaller nations and city-states that make up \ the whole of the nation. While the nation is independent it does have heavy ties to the Jargon Federation, \ being instrumental in the nations' founding and contact with the rest of the galaxy. " job_species_blacklist = list( "Consular Officer" = ALL_SPECIES )