mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-10 06:34:45 +01:00
1b798b2155
* Initial commit * oops no warns allowed * linters along with descriptions, psych, forklift, and brad cards * i can read errors, trust * yes * more linter * remove extra declaration * identical var fix * Pollard suggestions Co-authored-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Signed-off-by: Hayden Redacted <91229275+haydenredacted@users.noreply.github.com> * removes some comments and renames some TCG branded things * CRUNCH's attack chain migration Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com> Signed-off-by: Hayden Redacted <91229275+haydenredacted@users.noreply.github.com> * various icon and adds packs to maintenance loot * moved some coin stuff around and linters * Coin icon fix and adds them to the NT merch vendor * linter fix --------- Signed-off-by: Hayden Redacted <91229275+haydenredacted@users.noreply.github.com> Co-authored-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Co-authored-by: CRUNCH <143041327+CRUNCH-Borg@users.noreply.github.com>
317 lines
10 KiB
Plaintext
317 lines
10 KiB
Plaintext
/datum/tcg_card/pack_1/
|
|
name = ""
|
|
desc = ""
|
|
icon_state = ""
|
|
rarity = ""
|
|
card_type = ""
|
|
|
|
// COMMAND
|
|
|
|
/datum/tcg_card/pack_1/captain
|
|
name = "Captain"
|
|
desc = "The head of every Nanotrasen space station who spends most of their shift delegating and protecting the disk."
|
|
icon_state = "captain"
|
|
rarity = "Rare"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/renault
|
|
name = "Renault"
|
|
desc = "The Captain's trusty pet fox who spends most shifts walking around aimlessly in the Captain's Office."
|
|
icon_state = "renault"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/ce
|
|
name = "Chief Engineer"
|
|
desc = "The head of the engineering department and the one who ensures the station runs smoothly. Most of them fail at this."
|
|
icon_state = "ce"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/hop
|
|
name = "Head of Personnel"
|
|
desc = "Never far far from their closest pal, Ian, they defend the ability to give out AA to anyone who passes."
|
|
icon_state = "hop"
|
|
rarity = "Rare"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/rd
|
|
name = "Research Director"
|
|
desc = "The head of the science department who has to wrangle their explosion prone workers around."
|
|
icon_state = "rd"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/hos
|
|
name = "Head of Security"
|
|
desc = "The head of the security department, charged with putting away Syndicate and Assistant scum alike."
|
|
icon_state = "hos"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/cmo
|
|
name = "Chief Medical Officer"
|
|
desc = "The head of the medical department who makes sure their department isn't committing any intentional or unintentional malpractice."
|
|
icon_state = "cmo"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/qm
|
|
name = "Quartermaster"
|
|
desc = "The head of the supply department that makes sure everyone gets their crates and their ores."
|
|
icon_state = "qm"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
// ENGINEERING
|
|
|
|
/datum/tcg_card/pack_1/atmos_tech
|
|
name = "Atmospheric Technician"
|
|
desc = "The workers of the Engineering department who ensure the air is breathable and devoid of anything harmful."
|
|
icon_state = "atmos_tech"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/engineer
|
|
name = "Station Engineer"
|
|
desc = "The main working arm of the Engineering department, Station Engineers keep the hull and all the machines within intact."
|
|
icon_state = "engineer"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/poly
|
|
name = "Poly"
|
|
desc = "An expert in quantum cracker theory, she continues to scare enginee- INTEGRITY FAILING!"
|
|
icon_state = "poly"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
// MEDICAL
|
|
|
|
/datum/tcg_card/pack_1/doctor
|
|
name = "Medical Doctor"
|
|
desc = "Medical Doctors are able to cure almost any ailment that may be inflicted on a worker... while also inflicting some themself."
|
|
icon_state = "doctor"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/chemist
|
|
name = "Chemist"
|
|
desc = "Chemists are definitely not producing meth instead of life-saving chemicals."
|
|
icon_state = "chemist"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/paramedic
|
|
name = "Paramedic"
|
|
desc = "The Medical Department's first response member responsible for stabilizing and rescuing Nanotrasen employees."
|
|
icon_state = "paramedic"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/virologist
|
|
name = "Virologist"
|
|
desc = "The virologist is the person you go crying to that you either have the common cold or a disease that kills you in a few minutes. They might have been the cause of both of them."
|
|
icon_state = "virologist"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/coroner
|
|
name = "Coroner"
|
|
desc = "Overseer of the morgue, the coroner ensures that dead bodies are properly stored and have their autopsies recorded."
|
|
icon_state = "coroner"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/psychologist
|
|
name = "Psychologist"
|
|
desc = "Hired to offer emotional reassurance to employees aboard Nanotrasen stations but is usually found secretly dealing their drugs to anyone who asks."
|
|
icon_state = "psych"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/runtime // the urge to make this card throw a runtime.
|
|
name = "Runtime"
|
|
desc = "GCAT. Somehow, the four letters used in genomes can spell cat. How purr-ious."
|
|
icon_state = "runtime"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
// RESEARCH
|
|
|
|
/datum/tcg_card/pack_1/geneticist
|
|
name = "Geneticist"
|
|
desc = "Tasked with manipulating humanoid DNA, the Geneticist is able to give out genetic powers to their fellow crew."
|
|
icon_state = "geneticist"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/roboticist
|
|
name = "Roboticist"
|
|
desc = "The maintainer of all things cyborg, Roboticists build and maintain cyborgs for the station and are able to build a wide variety of exosuits."
|
|
icon_state = "roboticist"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/scientist
|
|
name = "Scientist"
|
|
desc = "A Scientist's job ranges from manning the R&D desk, to mixing chemicals, to setting up tank transfer valve bombs"
|
|
icon_state = "scientist"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/en
|
|
name = "E-N"
|
|
desc = "Robotics' adorable and lovable clone of Ian, he's got a heart of gold and can even do your taxes for you! Beware any unexpected sparking though."
|
|
icon_state = "e-n"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
// SECURITY
|
|
|
|
/datum/tcg_card/pack_1/warden
|
|
name = "Warden"
|
|
desc = "Watcher of the armory and the prison wing, the Warden expertly puts down rowdy criminals with Krav Maga."
|
|
icon_state = "warden"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/officer
|
|
name = "Security Officer"
|
|
desc = "The sworn enemy of any greytider, Security Officers are hired to keep the station in order and free of crime."
|
|
icon_state = "officer"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/detective
|
|
name = "Detective"
|
|
desc = "Sometimes masquerading as a noir detective, the Detective uses their deductive skills to help Security find suspects of crimes."
|
|
icon_state = "detective"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/araneus
|
|
name = "Sergeant Araneus"
|
|
desc = "The Head of Security's trusty pet spider is known for her violent retaliations torwards mistreatment."
|
|
icon_state = "araneus"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/paperwork
|
|
name = "Paperwork"
|
|
desc = "The Internal Affair's pet sloth is as mopey as can be and can sometimes get around to eating paperwork. Still slightly faster than a legal case."
|
|
icon_state = "paperwork"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
// SERVICE
|
|
|
|
/datum/tcg_card/pack_1/botanist
|
|
name = "Botanist"
|
|
desc = "The main ingredient provider for the chef, skilled botanist can produce plants that can fill a crewmember up and kill them just as quickly."
|
|
icon_state = "botanist"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/mime
|
|
name = "Mime"
|
|
desc = "..."
|
|
icon_state = "mime"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/clown
|
|
name = "Clown"
|
|
desc = "Honk!"
|
|
icon_state = "clown"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/janitor
|
|
name = "Janitor"
|
|
desc = "The humble Janitor travels the station in search of any messes that need cleaning."
|
|
icon_state = "janitor"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/chef
|
|
name = "Chef"
|
|
desc = "Wielder of CQC within their kitchen, the Chef protects their kitchen from any invaders trying to disrupt the distribution of food to the crew."
|
|
icon_state = "chef"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/bartender
|
|
name = "Bartender"
|
|
desc = "The station's OTHER source of emotional reassurance, the Bartender serves alcohol to anyone who wants it while shooting any disruptive patrons with their shotgun."
|
|
icon_state = "bartender"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/chaplain
|
|
name = "Chaplain"
|
|
desc = "The spirtual leader of the station, the Chaplain offers unique services due to their connection with religious higher-ups."
|
|
icon_state = "chaplain"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/librarian
|
|
name = "Librarian"
|
|
desc = "Usually found within their library writing and printing books, the Librarian is able to loan out books full of knowledge. Don't forget to return them!"
|
|
icon_state = "librarian"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
// SUPPLY
|
|
|
|
/datum/tcg_card/pack_1/cargo_tech
|
|
name = "Cargo Technician"
|
|
desc = "The main workhorse of the Supply department, Cargo Technicians ensure your crates are delivered soon after you order them."
|
|
icon_state = "cargo_tech"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/miner
|
|
name = "Shaft Miner"
|
|
desc = "Pioneers of Lavaland, Shaft Miners brave the horrors in order to bring materials to the station."
|
|
icon_state = "miner"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/forklift
|
|
name = "Forklift"
|
|
desc = "Supply's pet of choice, Forklift has been taught how to carry crates and wouldn't hurt a fly!"
|
|
icon_state = "forklift"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/brad
|
|
name = "Brad"
|
|
desc = "Residing just on the outskirts of the Mining Outpost, Brad is a cockroach that has adapted to the weather patterns of Lavaland and can withstand them."
|
|
icon_state = "brad"
|
|
rarity = "Uncommon"
|
|
card_type = "Unit"
|
|
|
|
// MISC
|
|
|
|
/datum/tcg_card/pack_1/assistant
|
|
name = "Assistant"
|
|
desc = "Hired to assist employees around the station, Assistants tend to do the exact opposite of that."
|
|
icon_state = "assistant"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/greytide
|
|
name = "Greytide"
|
|
desc = "Born from disgruntled and abused Assistants, the Greytide are a nuisance to Security and the rest of the station alike."
|
|
icon_state = "greytide"
|
|
rarity = "Rare"
|
|
card_type = "Unit"
|
|
|
|
/datum/tcg_card/pack_1/mouse
|
|
name = "Mouse"
|
|
desc = "The bane of engineers around the sector, the Mouse makes any cables they find a nice meal for themself."
|
|
icon_state = "mouse"
|
|
rarity = "Common"
|
|
card_type = "Unit"
|