Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 32.03 KB | None | 0 0
  1. /datum/griffeningcard
  2.  
  3. var/name = ""
  4. var/desc = ""
  5. var/atk = 0
  6. var/def = 0
  7. var/lvl = 0
  8. var/boostatk = 0
  9. var/boostdef = 0
  10. var/removeatk = 0
  11. var/removedef = 0
  12. var/summonsound = null //Same thing for if you use an effect
  13. var/attacksound = null //also hologram hype
  14. var/deathsound = null
  15. var/hologramvisual = null
  16. var/card_type = null
  17. var/rarity = "common"
  18. var/list/Attributes = list() //What special effects does this have? will be shown during examining a card
  19.  
  20.  
  21. /datum/griffeningcard/creature
  22. card_type = CREATURE_CARD
  23.  
  24. /datum/griffeningcard/effect
  25. card_type = EFFECT_CARD
  26. lvl = 0
  27. atk = 0
  28. def = 0
  29.  
  30. /datum/griffeningcard/equipment
  31. card_type = EQUIPMENT_CARD
  32. lvl = 0
  33. atk = 0
  34. def = 0
  35. /datum/griffeningcard/area
  36. card_type = AREA_CARD
  37.  
  38. /datum/griffeningcard/creature/captain
  39. name = "Captain"
  40. desc = "Captain cannot be played if there's a nuclear operative or captain in play. Requires the bridge area to be played. If this card is summoned, get a energy gun card from your hand, discard pile or deck and attach it to this card. You may also immediately search your deck for a card that's a head and if you do, summon it. The card cannot be a captain."
  41. lvl = 7
  42. atk = 60
  43. def = 60
  44. Attributes = list("Human", "Non antag", "Unconvertable", "Head", "Captain")
  45.  
  46. /datum/griffeningcard/creature/HeadOfPersonnel
  47. name = "Head Of Personnel"
  48. desc = "If you control this card, then you may sacrifice a assistant, if you do then immediately summon any level 3 or below non antagonist human from your deck."
  49. lvl = 7
  50. atk = 20
  51. def = 65
  52. Attributes = list("Human", "Non antag", "Unconvertable", "Head")
  53.  
  54. /datum/griffeningcard/creature/Assistant
  55. name = "Assistant"
  56. desc = "A regular assistant, while not powerful, with the right people the combined power would had been to great for many."
  57. lvl = 2
  58. atk = 10
  59. def = 5
  60. Attributes = list("Human", "Non antag", "Assistant")
  61.  
  62. /datum/griffeningcard/creature/HeadOfSecurity
  63.  
  64. name = "Head Of Security"
  65. desc = "Requires a security officer to be sacrificed to play this card. If you control a Head Of Personnel then you may sacrifice a assistant to instead immiediately summon a security officer. Increase all security officers atk by 20."
  66. lvl = 7
  67. atk = 50
  68. def = 35
  69. Attributes = list("Human", "Non antag", "Unconvertable", "Head", "Security", "Summon condition")
  70.  
  71. /datum/griffeningcard/creature/SecurityOfficer
  72.  
  73. name = "Security Officer"
  74. desc = "Security officer cannot kill a non antagonist human unless 'head of security' is in play. Instead, if the non antagonist human has a def lower than this card's attack, the human will become incapacited for one turn. The duration is doubled if security officer has a 'taser' equipped. This effect is optional on antagonist humans."
  75. lvl = 5
  76. atk = 30
  77. def = 25
  78. Attributes = list("Human", "Non antag", "Unconvertable", "Security Officer")
  79.  
  80. /datum/griffeningcard/creature/Warden
  81.  
  82. name = "Warden"
  83. desc = "Requires a security officer to be sacrificed to play this card. Cannot be attacked if you control a Security Officer or Head Of Security. When played, you may grab as many 'taser' cards from your deck or discard pile and put it in your hand."
  84. lvl = 7
  85. atk = 15
  86. def = 15
  87. Attributes = list("Human", "Non antag", "Unconvertable", "Security")
  88.  
  89. /datum/griffeningcard/creature/Lawyer
  90.  
  91. name = "Lawyer"
  92. desc = "While lawyer is in play, any antagonists on the owner's side of the field cannot be attacked or effected by a card effect. Any 'security officer' on the same field of the owner of this card cannot attack but can still incapacitate."
  93. lvl = 3
  94. atk = 10
  95. def = 10
  96. Attributes = list("Human", "Non antag")
  97.  
  98. /datum/griffeningcard/creature/Clown
  99. name = "Clown"
  100. desc = "May redirect a enemy creature attack to this card instead. If this card is discarded as a result of a creature attack, that creature will be incapacitated for one turn."
  101. lvl = 2
  102. atk = 10
  103. def = 25
  104. Attributes = list("Human", "Non antag", "Can redirect attacks")
  105.  
  106. /datum/griffeningcard/creature/ResearchDirector
  107.  
  108. name = "Research Director"
  109. desc = "This card can only be summoned by sacrificing a scientist. If this card is in play, increase the atk of all scientist cards you own by 10. Once per turn at any point, all the atk and def of one 'scientist' is transferred to any other card on the field. At the end of the opponents turn, this effect is reversed. "
  110. lvl = 6
  111. atk = 45
  112. def = 45
  113. Attributes = list("Human", "Non antag", "Head", "Unconvertable", "Summon condition")
  114.  
  115. /datum/griffeningcard/creature/Scientist
  116.  
  117. name = "Scientist"
  118. desc = "At the beginning of the owner of this card's turn, if there's another scientist on the field you control, increase the atk and def of this card by 5. Stacks and is lost if that scientist dies."
  119. lvl = 3
  120. atk = 25
  121. def = 25
  122. Attributes = list("Human", "Non antag", "Scientist")
  123.  
  124. /datum/griffeningcard/creature/Roboticist
  125.  
  126. name = "Roboticist"
  127. desc = "If a cyborg you control is destroyed, you may summon it as soon as your turn begins. Only works on one cyborg."
  128. lvl = 3
  129. atk = 15
  130. def = 15
  131. Attributes = list("Human", "Non antag", "Cyborg revival")
  132.  
  133. /datum/griffeningcard/creature/ChiefEngineer
  134. name = "Chief Engineer"
  135. desc = "You must sacrifice a engineer to play this card. At the start of your turn, if this card is not incapacitated then you may remove the opponent's current area card. While this card is in play and the engineering area active, your area card cannot be destroyed or replaced."
  136. lvl = 6
  137. atk = 40
  138. def = 50
  139. Attributes = list("Human", "Non antag", "Head", "Unconvertable", "Summon condition", "Protects and destroys areas")
  140.  
  141. /datum/griffeningcard/creature/Engineer
  142.  
  143. name = "Engineer"
  144. desc = "At the beginning of your turn, if this card has a equipment card attached to itself, then you may search the deck for the same equipment card and put it into your hand."
  145. lvl = 5
  146. atk = 25
  147. def = 45
  148. Attributes = list("Human", "Non antag", "Engineer")
  149.  
  150. /datum/griffeningcard/creature/Janitor
  151.  
  152. name = "Janitor"
  153. desc = "When this card is played, get a wet floor effect card from your deck and either put it on the field facedown or in your hand."
  154. lvl = 2
  155. atk = 15
  156. def = 20
  157. Attributes = list("Human", "Non antag", "Wet floor refresher")
  158.  
  159. /datum/griffeningcard/creature/Barman
  160.  
  161. name = "Barman"
  162. desc = "As long as this card remains on the field, all non antag humans you control are immune to incapacitation."
  163. lvl = 2
  164. atk = 15
  165. def = 10
  166. Attributes = list("Human", "Non antag", "Provides incapacitation immunity")
  167.  
  168. /datum/griffeningcard/creature/CMO
  169.  
  170. name = "Chief Medical Officer"
  171. desc = "This card can only be played if you sacrifice a medical doctor. If this card is in play, increase all def of all humans you control by 20. This effect gives 20 more def per medical doctor you control."
  172. lvl = 7
  173. atk = 30
  174. def = 20
  175. Attributes = list("human", "Non antag", "Head", "Unconvertable", "Summon condition")
  176.  
  177. /datum/griffeningcard/creature/MedicalDoctor
  178.  
  179. name = "Medical Doctor"
  180. desc = "A medical doctor that well, heals people somehow."
  181. lvl = 2
  182. atk = 10
  183. def = 20
  184. Attributes = list("Human", "Non antag", "Medical Doctor")
  185.  
  186. /datum/griffeningcard/creature/Geneticist
  187.  
  188. name = "Geneticist"
  189. desc = "A person that deals with genetics, as it says on the tin. "
  190. lvl = 3
  191. atk = 15
  192. def = 10
  193. Attributes = list("Human", "Non antag")
  194.  
  195. /datum/griffeningcard/creature/Cyborg
  196.  
  197. name = "Cyborg"
  198. desc = "Cannot attack humans unless a law card states so. The starting law is NoHarm. When this card is played, you may get a door bolts card from your deck or discard pile and place it in your hand."
  199. lvl = 3
  200. atk = 30
  201. def = 20
  202. Attributes = list("Cyborg", "Non antag", "Effected by laws")
  203.  
  204. /datum/griffeningcard/creature/AI
  205.  
  206. name = "AI"
  207. desc = "This card can only be played if you sacrifice a cyborg. This card cannot attack. If a Human that's a head is on either side when this card is played, you may search your deck for a law card."
  208. lvl = 6
  209. atk = 0
  210. def = 40
  211. Attributes = list("Cyborg", "Non antag", "Effected by laws") //Oh hey no unconvertable tag, you know what this means
  212.  
  213. /datum/griffeningcard/creature/AtmosphericTech
  214.  
  215. name = "Atmospheric Tech"
  216. desc = "A human meant to supervise the atmos of the station... most of the time."
  217. lvl = 1
  218. atk = 15
  219. def = 10
  220. Attributes = list("Human", "No antag")
  221.  
  222. /datum/griffeningcard/creature/Wizard
  223.  
  224. name = "Wizard"
  225. desc = "If this card has a magical robe and magical hat equipped, when the opponent starts their turn, you may use one of the following effects, 1. Incapacitate all enemies for one turn. This stacks in duration. 2. Kill any opponent human card. 3. For the rest of the opponent's turn, this card cannot be effected by anything. If this card also has a magical staff, you can instead do two effects per turn."
  226. lvl = 7
  227. atk = 25
  228. def = 20
  229. Attributes = list("Human", "Antag", "WIZARD FEDERATION")
  230.  
  231. /datum/griffeningcard/creature/Changeling
  232.  
  233. name = "Changeling"
  234. desc = "At the start of your turn, you may choose any human card in either player's discard pile, if you do, copy the atk and def of said card and send the card to the 'gibbed pile'. If the opponent successfully uses the 'flamethrower', 'Incendiary Grenade' or 'Plasma Fire', immediately discard this card. This card is considered a non human."
  235. lvl = 1
  236. atk = 5
  237. def = 5
  238. Attributes = list("Human", "Antag")
  239.  
  240. /datum/griffeningcard/creature/Abomination
  241.  
  242. desc = "Abomination cannot be destroyed by humans without a atk boosting equipment card. At the start of the opponents turn, incapacitate one of their creatures. If the opponent successfully uses the 'flamethrower', 'Incendiary Grenade' or 'Plasma Fire', the def of this card becomes 50%. This is considered a non human."
  243. lvl = 9
  244. atk = 90
  245. def = 90
  246. Attributes = list("definately not a human", "Antag")
  247.  
  248. /datum/griffeningcard/creature/NuclearOperative
  249.  
  250. name = "Nuclear Operative"
  251. desc = "You cannot play this card if you also control a captain. If this card is destroyed as a result of a creature, that creature is incapacitated for two turns and this card is sent to the gibbed pile."
  252. lvl = 7
  253. atk = 6
  254. def = 40
  255. Attributes = list("Human", "Antag", "Nuclear Operative")
  256.  
  257. /datum/griffeningcard/creature/Quartermaster
  258.  
  259. name = "Quarter Master"
  260. desc = "This card can only be played if you sacrifice a cargo tech."
  261. lvl = 5
  262. atk = 35
  263. def = 50
  264. Attributes = list("Human", "Non antag", "Not a head", "Summon condition") //Should the QM be considered a head? no one knows
  265.  
  266. /datum/griffeningcard/creature/CargoTech
  267.  
  268. name = "Cargo Tech"
  269. desc = "A person responsible for hauling crates."
  270. lvl = 3
  271. atk = 10
  272. def = 25
  273. Attributes = list("Human", "Non antag", "Cargo Tech")
  274.  
  275. /datum/griffeningcard/effect/HullBreach
  276.  
  277. name = "Hull Breach"
  278. desc = "This card can only be played if you control a antag human or cyborg. While this card is in play, reduce the def of all humans on the field by 40 unless they have a space suit equipped. By the end of the turn, if either you or your opponent have a engineer or chief engineer in play, this card is discarded."
  279. removedef = 40
  280. Attributes = list("Effect", "Continuous")
  281.  
  282. /datum/griffeningcard/effect/Disarm
  283.  
  284. name = "Disarm Intent"
  285. desc = "Can be played at any time, you may either use one of two effects 1. Destroy a effect card, can negate a effect card being activated. 2. Select a creature, remove one equipment card from it."
  286. Attributes = list("Effect", "Any time if facedown")
  287.  
  288. /datum/griffeningcard/effect/DeathGasp
  289.  
  290. name = "Death Gasp"
  291. desc = "If an enemy creature destroys one of your creatures with an attack or effect, you may immediately play this card, that creature is not destroyed."
  292. Attributes = list("Effect", "Can only be used if a enemy attacks")
  293.  
  294. /datum/griffeningcard/equipment/Stimpack
  295.  
  296. name = "Stimpack"
  297. desc = "Antag only. The equipped creature gains 30 def and can no longer be incapacitated as long as this is equipped. The def bonus is lost upon denquipping."
  298. boostdef = 30
  299. Attributes = list("Equipment", "Incapacitation immunity")
  300.  
  301. /datum/griffeningcard/equipment/Injector
  302.  
  303. name = "Injector"
  304. desc = "If the creature equipped with this card would had been discarded, discard this card instead. This card otherwise cannot be removed."
  305. Attributes = list("Equipment", "Discard immunity")
  306.  
  307. /datum/griffeningcard/equipment/Mindslave
  308.  
  309. name = "Mindslave"
  310. desc = "Can only be used if the owner of this card has a antag human, cyborg or a 'Nuclear Operative' in play. Cannot be used on a human that's already an antag, or a 'Nuclear Operative' or a already mindslaved human. If used on a enemy creature, take control of the equipped human until the implant is destroyed. This cannot work on cards that are unconvertable."
  311. Attributes = list("Equipment", "Requires a antag")
  312.  
  313. /datum/griffeningcard/equipment/motivationalspeech
  314.  
  315. name = "Motivational Speech"
  316. desc = "Equip this card to a creature on the field, if you do, take control of that creature until the end of your turn."
  317. Attributes = list("Equipment", "Any creature")
  318.  
  319. /datum/griffeningcard/effect/shockwave
  320.  
  321. name = "Shockwave"
  322. desc = "When this card is played successfully, unequip and return all equipment cards and effect cards to the respective owner's hand. This effect will not return this card to the hand. Any card that has a special effect from being destroyed or unequipped will apply."
  323. Attributes = list("Effect")
  324.  
  325. /datum/griffeningcard/effect/knockoutgas
  326.  
  327. name = "Knockout Gas"
  328. desc = "No enemy creature can attack until the end of the opponent's next turn."
  329. Attributes = list("Effect", "Prevent attack")
  330.  
  331. /datum/griffeningcard/effect/empstorm
  332.  
  333. name = "EMP storm"
  334. desc = "All law modules currently active are destroyed. Cyborgs or AIs loose 20 atk and def."
  335. removeatk = 20
  336. removedef = 20
  337. Attributes = list("Effect", "Effects cyborgs and AI only")
  338.  
  339. /datum/griffeningcard/effect/lawnohuman
  340.  
  341. name = "Law Module No Human"
  342. desc = "When this card is played, immediately destroy all other law modules from the field. Cyborgs and AIs may hurt humans without restriction."
  343. Attributes = list("Effect", "Continuous", "There's no humans")
  344.  
  345. /datum/griffeningcard/effect/lawdeactivation
  346.  
  347. name = "Law Module Deactivation"
  348. desc = "When this card is played, immediately destroy all other law modules from the field. While this card is in play, all cyborgs and AIs are incapacitated."
  349. Attributes = list("Effect", "Continuous", "Cyborgs and AIs are incapacitated")
  350.  
  351. /datum/griffeningcard/effect/lawdonotharm
  352.  
  353. name = "Law Module Do No Harm"
  354. desc = "When this card is played, immediately destroy all other law modules from the field. While this card is active, robot cards may not attack."
  355. Attributes = list("Effect", "Continuous", "Cyborgs and AIs can't attack humans, antags are still humans")
  356.  
  357. /datum/griffeningcard/effect/ThermalOpticalGoggles
  358.  
  359. name = "Thermal Optical Goggles"
  360. desc = "When this card is played, your opponent reveals his/her hand as well as all facedown cards on their side of the field."
  361. Attributes = list("Effect", "Show yo damm hand")
  362.  
  363. /datum/griffeningcard/effect/stealthstorage
  364.  
  365. name = "Stealth Storage"
  366. desc = "Can be played at any time, pick a card from your hand and immiediately play it, even if it says you can't."
  367. Attributes = list("Effect", "Makes a card playable from hand")
  368.  
  369. /datum/griffeningcard/equipment/energygun
  370.  
  371. name = "Energy Gun"
  372. desc = "Gives 30 atk and 15 def."
  373. Attributes = list("Equipment")
  374.  
  375. /datum/griffeningcard/effect/robotframe
  376.  
  377. name = "Robot Frame"
  378. desc = "Instantly bring a cyborg from either player's discarded pile onto your side of the field. If you have a 'roboticist' in play on your field, you may instead bring back two cyborgs instead."
  379. Attributes = list("Effect")
  380.  
  381. /datum/griffeningcard/effect/meteorshower
  382.  
  383. name = "Meteor Shower"
  384. desc = "All areas currently in effect are destroyed, this cannot be negated or destroyed and only on your turn."
  385. Attributes = list("Effect", "Cannot be negated")
  386.  
  387. /datum/griffeningcard/equipment/radio
  388.  
  389. name = "Radio"
  390. desc = "When the creature equipped with this is killed or gibbed, grab any level 4 or lower creature from your deck put it into your hand."
  391. Attributes = list("Equipment")
  392.  
  393. /datum/griffeningcard/equipment/esword
  394.  
  395. name = "Energy Sword"
  396. desc = "Only an antag or 'syndicate operative' can use this. Boosts atk by 40. If you were to attack and the defending creature has a def or atk boosting weapon, nullify the effects. Same applies with defending an attack."
  397. boostatk = 40
  398. Attributes = list("Equipment", "Antag only", "Nullifies any equipped item of attacker or defender")
  399.  
  400. /datum/griffeningcard/equipment/fake357
  401.  
  402. name = "Fake 357"
  403. desc = "Can be used on any human on the field. If the human that has this card equipped attacks, kill the creature instead and discard this equipment card."
  404. Attributes = list("Equipment", "Any creature that's a human")
  405.  
  406. /datum/griffeningcard/equipment/toolbox
  407.  
  408. name = "Toolbox"
  409. desc = "Increase the equipped creature atk by 10. If it's an assistant, the atk is instead increased by 25."
  410. Attributes = list("Equipment")
  411.  
  412. /datum/griffeningcard/equipment/fireextinguisher
  413.  
  414. name = "Fire Extinguisher"
  415. desc = "Increases the equipped creature atk by 20. If the creature is attacked or effected by plasma fire, incendiary grenade or flamethrower, you may choose to negate the effect and if you do, destroy the negated card and destroy this card as well."
  416. Attributes = list("Equipment", "Rekts fire")
  417.  
  418. /datum/griffeningcard/effect/wetfloor
  419.  
  420. name = "Wet Floor"
  421. desc = "Stops a enemy creature attack. If you control a janitor, this card is put into your hand instead of the discard pile."
  422. Attributes = list("Effect", "Only during a creature attack", "Janitor refreshes")
  423.  
  424. /datum/griffeningcard/equipment/wrestlingbelt
  425.  
  426. name = "Wrestling Belt"
  427. desc = "Can only be used by an antag or a syndicate operative and only humans, increases the atk and def by 20 and if the equipped human is to be attacked, negate any atk bonuses the attacker if it has any."
  428. Attributes = list("Equipment", "Antag only", "Nullifies attacker equipment")
  429.  
  430. /datum/griffeningcard/effect/supplyshuttle
  431.  
  432. name = "Supply Shuttle"
  433. desc = "Can only be played if you control a quartermaster or have a cargo area in play. Draw til you have six cards in your hand."
  434. Attributes = list("Effect", "Requires a quartermaster")
  435.  
  436. /datum/griffeningcard/effect/radiouplink
  437.  
  438. name = "Radio Uplink"
  439. desc = "Search the deck for any one equipment or effect card and put it into your hand."
  440. Attributes = list("Effect", "Deck search")
  441.  
  442. /datum/griffeningcard/effect/abandonedcrate
  443.  
  444. name = "Abandoned Crate"
  445. desc = "Discard any card, draw two cards."
  446. Attributes = list("Effect")
  447.  
  448. /datum/griffeningcard/effect/surpluscrate
  449.  
  450. name = "Surplus Crate"
  451. desc = "When this is played successfully, draw three cards and show them to the opponent, then discard any two cards."
  452. Attributes = list("Effect")
  453.  
  454. /datum/griffeningcard/effect/telescientist
  455.  
  456. name = "Telescientist"
  457. desc = "A Research Director must be in play and you own it to play this card. When this card is played, view your opponents hand and take one card."
  458. Attributes = list("Effect", "Requires a research director to play")
  459.  
  460. /datum/griffeningcard/effect/deconstructor
  461.  
  462. name = "Deconstructor"
  463. desc = "This card can only be played if facedown and used as a counter to a effect or equipment card and only if you control a scientist. Destroy the card, if this happens then search the opponents deck for a copy of the card. If a copy of the card has been found, discard that card and shuffle the deck."
  464. Attributes = list("Effect", "Opponent deck search", "Requires a scientist")
  465.  
  466. /datum/griffeningcard/effect/enginesabotage
  467.  
  468. name = "Engine Sabotage"
  469. desc = "Continuous effect, requires a antag to play, while this card is active, all opponent area cards are negated and no new area cards can be played. If there's a 'emergency shuttle' area card in play, the effects of it is not negated, but neither player can play a 'emergency shuttle' card."
  470. Attributes = list("Effect", "Continuous")
  471.  
  472. /datum/griffeningcard/equipment/handcuffs
  473.  
  474. name = "Handcuffs"
  475. desc = "Cannot be put facedown, target a human creature and equip this card to it. At the end of your third turn, the turn you play it on being the first, destroy the card. As long as that human has this card equipped, it cannot use it's effect or attack."
  476. Attributes = list("Equipment", "Any human creature")
  477.  
  478. /datum/griffeningcard/equipment/incendiarygrenade
  479.  
  480. name = "Incendiary Grenade"
  481. desc = "If the creature this card is equipped to attacks, any opponent creature that has less than 20 def is destroyed. All other opponent creatures that have 20 or higher def will instead have def lowered by 20 until the end of your turn. If this effect has concluded, destroy this card."
  482. removedef = 20
  483. Attributes = list("Equipment", "Discard on use")
  484.  
  485. /datum/griffeningcard/effect/firefightinggrenade
  486.  
  487. name = "Fire Fighting Grenade"
  488. desc = "This card may be played in response to Flamethrower, Plasma Fire and Incendiary Grenade. Instantly destroy both cards. When this card is activated, the opponent's turn immediately ends."
  489. Attributes = list("Effect")
  490.  
  491. /datum/griffeningcard/equipment/plasmafire
  492.  
  493. name = "Plasma Fire"
  494. desc = "This card can only be played if there's a atmospheric tech in play. When this card is played, instantly reduce the def of all opponent humans by 10. While this card is active, all opponent humans lose 20 def at the start of the opponent's turn. If a creature reaches 0 def due to the effects of this card, the creature is killed. If any area cards are played while Plasma Fire is active, discard Plasma Fire."
  495. removedef = 10
  496. Attributes = list("Equipment")
  497.  
  498. /datum/griffeningcard/effect/authenticationdisk
  499.  
  500. name = "Authentication Disk"
  501. desc = "This card can only be played if there's a captain in play. If the captain is on your side of the field, summon two security officer immediately on your side of the field either from your hand, deck or discard pile. If the captain is on the opponent's field, immediately summon two 'nuclear operatives' from your deck, hand or discard pile."
  502. Attributes = list("Effect")
  503.  
  504. /datum/griffeningcard/effect/pinpointer
  505.  
  506. name = "Pinpointer"
  507. desc = "When this card is played, put a 'authentication disk' card into your hand either from both yours and opponent's discard pile or deck."
  508. Attributes = list("Effect")
  509.  
  510. /datum/griffeningcard/effect/mattereater
  511.  
  512. name = "Matter Eater"
  513. desc = "When this card is played, choose a face up equipment card and immediately send it to the gibbed pile."
  514. Attributes = list("Effect")
  515.  
  516. /datum/griffeningcard/equipment/spacesuit
  517.  
  518. name = "Space Suit"
  519. desc = "Can only be equipped to humans, any human equipped with this is immune to 'hull breach', 'flamethrower', 'plasma fire' or 'incendiary grenade' as well as increase def by 10."
  520. Attributes = list("Equipment")
  521.  
  522. /datum/griffeningcard/effect/dnaabsorbtion
  523.  
  524. name = "DNA Absorbtion"
  525. desc = "Can only be played if you control a 'changeling', if you do, target a enemy creature and send it to the gibbed pile. If you do, send 'changeling' to the discard pile and immediately summon 'abomination' either from your hand, deck or discard pile."
  526. Attributes = list("Effect")
  527.  
  528. /datum/griffeningcard/effect/crematorium
  529.  
  530. name = "Crematorium"
  531. desc = "When this card is played, place 5 cards from the discard pile of either player to their gibbed pile."
  532.  
  533.  
  534. /datum/griffeningcard/equipment/flamethrower
  535.  
  536. name = "Flamethrower"
  537. desc = "When attacking a human using 'Flamethrower', reduce their def by 30 before attacking. If target humanoid is 'changeling', immediately destroy the 'changeling;. If the target is 'Abomination', reduce their def by half instead."
  538. Attributes = list("Equipment")
  539.  
  540. /datum/griffeningcard/equipment/energyaxe
  541.  
  542. name = "Energy Axe"
  543. desc = "Can only be equipped if you sacrifice a creature and if you do, you may equip this card to a creature. Raises the atk by 40 and def by 20 of the equipped creature."
  544. Attributes = list("Equipment")
  545.  
  546. /datum/griffeningcard/equipment/riotlauncher
  547.  
  548. name = "Riot Launcher"
  549. desc = "If the equipped creature attacks an enemy that has an equipment card, remove the equipment card or choose one if there's more than one equipped."
  550. Attributes = list("Equipment")
  551.  
  552. /datum/griffeningcard/equipment/telekinesis
  553.  
  554. name = "Telekinesis"
  555. desc = "Requires a 'geneticist' to be in play on your field, take any equipment card currently equipped to a enemy creature and put it in your hand."
  556. Attributes = list("Equipment")
  557.  
  558. /datum/griffeningcard/equipment/basketball
  559.  
  560. name = "Basketball"
  561. desc = "If the equipped creature attacks a creature that has a atk or def boosting card equipped, destroy the card. If the creature doesn't have one, change the ownership of this item to the opponent and equip it to the defending creature."
  562. Attributes = list("Equipment")
  563.  
  564. /datum/griffeningcard/effect/chaosdunk
  565.  
  566. name = "Chaos Dunk"
  567. desc = "If you have a creature equipped with 'basketball' you may play this card. At the end of your turn, gib all creatures on the field including yours as well as equipment cards. "
  568. Attributes = list("Effect")
  569.  
  570. /datum/griffeningcard/equipment/grenade
  571.  
  572. name = "Grenade"
  573. desc = "If a creature equipped with this kills a creature, that creature is sent to the gibbed pile. If this creature is killed by any means, it is also gibbed. If grenade is removed it is sent to the gibbed pile. The atk of the equipped creature is increased by 10, while the def is decreased by 10."
  574. Attributes = list("Equipment")
  575.  
  576. /datum/griffeningcard/equipment/artistictoolbox
  577.  
  578. name = "Artistic Toolbox"
  579. desc = "You must sacrifice a human before using this card, if you do you may equip this card to a human. The equipped human cannot be incapacitated while this is equipped. Anytime the equipped human kills another human, that human is sent to the gibbed pile. Artistic toolbox gives the equipped human 10 atk and def for each human in the opponents gibbed pile. At the end of every two turns, you must sacrifice a human, if you cannot this card is sent to the gibbed pile."
  580. Attributes = list("Equipment")
  581.  
  582. /datum/griffeningcard/effect/greyide
  583.  
  584. name = "Greytide"
  585. desc = "When this card is played, immediately spawn up to two assistants from the your deck, hand or discard pile to the field."
  586. Attributes = list("Effect")
  587.  
  588. /datum/griffeningcard/effect/mutiny
  589.  
  590. name = "Mutiny"
  591. desc = "Can only be played if you have three assistants on your side of the field and a sacrificed human. The opponent must have a 'captain' on their field and if they do, you gain ownership of the 'captain'."
  592. Attributes = list("Effect")
  593.  
  594. /datum/griffeningcard/equipment/wizardhat
  595.  
  596. name = "Wizard Hat"
  597. desc = "If the equipped creature is a 'wizard' and has the robe equipped as well, 'wizard' gains 20 atk and def."
  598. Attributes = list("Equipment")
  599.  
  600. /datum/griffeningcard/equipment/wizardrobe
  601.  
  602. name = "Wizard Robe"
  603. desc = "If the equipped creature is a 'wizard' and has the robe equipped as well, 'wizard' gains 20 atk and def."
  604. Attributes = list("Equipment")
  605.  
  606. /datum/griffeningcard/equipment/wizardstaff
  607.  
  608. name = "Wizard Staff"
  609. desc = "The equipped creature gains 10 atk and def."
  610. Attributes = list("Equipment")
  611.  
  612. /datum/griffeningcard/equipment/reinforcedsteel
  613.  
  614. name = "Reinforced Steel"
  615. desc = "Cannot stack with 'heavy steel' and can only be used on cyborgs or AI. Increases atk by 10 and def by 20."
  616. Attributes = list("Equipment", "Cyborg and AI only")
  617.  
  618. /datum/griffeningcard/equipment/heavysteel
  619.  
  620. name = "Heavy Steel"
  621. desc = "Cannot stack with 'reinforced steel' and can only be used on cyborgs or AI. Increases atk by 20 and def by 40."
  622. Attributes = list("Equipment", "Cyborg and AI only")
  623.  
  624. /datum/griffeningcard/equipment/speedupgrade
  625.  
  626. name = "Speed upgrade"
  627. desc = "Only usable on cyborgs, a cyborg equipped with this can attack twice in one turn, if it does, it will become incapacitated until the end of your next turn."
  628. Attributes = list("Equipment", "Cyborg only")
  629.  
  630. /datum/griffeningcard/equipment/cyborgmodule
  631.  
  632. name = "Cyborg Module"
  633. desc = "Only usable on cyborg, when equipped it can change its class and be able to change it once per turn during your turn.. Available classes are 'medical doctor', 'engineer', 'clown' or the'scientist'. It's class will give the effect corrasponding with the chosen class but not the atk, def or lvl."
  634. Attributes = list("Equipment", "Cyborg only")
  635.  
  636. /datum/griffeningcard/area/engineering
  637.  
  638. name = "Engineering Area"
  639. desc = "All 'engineer' and 'chief engineer' on the field gain 15 atk and def. The bonus is lost once this card is destroyed."
  640. Attributes = list("Area")
  641.  
  642. /datum/griffeningcard/area/medbay
  643.  
  644. name = "Medbay"
  645. desc = "All humans on your side of the field have it's def increased by 25. If a human you control is killed but not gibbed and you have a 'medical doctor', you can instead make the human incapacitated until the end of your next turn. A 'medical doctor' that has been chosen for this effect cannot do it again until the next turn and incapacitated crew cannot save anyone."
  646. Attributes = list("Area")
  647.  
  648. /datum/griffeningcard/area/genetics
  649.  
  650. name = "Genetics Area"
  651. desc = "When this area is played, you may immediately summon any one discarded human to the field. At the beginning of your turn, if you have a geneticist and this card in play, you may immiediately summon a discarded human to your side of the field."
  652. Attributes = list("Area")
  653.  
  654. /datum/griffeningcard/area/robotics
  655. name = "Robotics Area"
  656. desc = "All robots you control have their atk raised by 20 and def increased by 10. Any human that is killed which includes your opponent's human, you may choose to get a cyborg from your discard pile or deck and add it to your hand."
  657. Attributes = list("Area")
  658.  
  659. /datum/griffeningcard/area/thevoidarea
  660.  
  661. name = "The Void Area"
  662. desc = "While the void is in play, all newly played humans lose half their atk and def. Each player loses 10 HP at the beginning of their turn."
  663. Attributes = list("Area")
  664.  
  665. /datum/griffeningcard/area/syndicateshuttlearea
  666.  
  667. name = "Syndicate Shuttle Area"
  668. desc = "When you play syndicate shuttle, immediately draw two cards for each traitor or operative you control. Any human or cyborg you control can now use any traitor items or be effected by anything that requires a traitor. This area is automatically destroyed if you control no creatures and cannot be destroyed any other way. If this card is discarded, any discarded card is gibbed instead."
  669. Attributes = list("Area")
  670.  
  671. /datum/griffeningcard/area/aiupload
  672.  
  673. name = "Ai Upload Area"
  674. desc = "While AI Upload and an AI is in play, no human or robot may attack if the AI is not on their side of the field. While this card is active, the AI gains 120 def. If a law card is played while the AI is on the field, move the AI to the player's side of the field. If the AI is killed, this card destroyed."
  675. Attributes = list("Area")
  676.  
  677. /datum/griffeningcard/area/securityarea
  678.  
  679. name = "Security Area"
  680. desc = "While Security is in play, Security Officers and Head of Security can incapacitate foes with higher def than their atk when attacking them, preventing them from attacking. This card cannot be played while Lawyer is in play. If Lawyer enters play, destroy this card."
  681. Attributes = list("Area")
  682.  
  683. /datum/griffeningcard/area/cargobay
  684.  
  685. name = "Cargo Bay Area"
  686. desc = "While Cargo Bay is in play, you may draw a card for every quartermaster you control."
  687. Attributes = list("Area")
  688.  
  689. /datum/griffeningcard/area/emergencyshuttlearea
  690.  
  691. name = "Emergency Shuttle Area"
  692. desc = "While Emergency Shuttle is in play, no equipment cards may be in play. At the start of the 11th turn after Emergency Shuttle was played, if Emergency Shuttle is still in play, the player who played it automatically wins. Emergency Shuttle cannot be played unless the player has a head of staff or the AI on the field."
  693. Attributes = list("Area")
  694.  
  695. /datum/griffeningcard/area/bridge
  696.  
  697. name = "Bridge"
  698. desc = "While Bridge is in play, heads of staff can only be attacked by other heads of staff, unless the AI is on the attacker's side of the field. All heads of staff gain 15 atk, 15 def."
  699. Attributes = list("Area")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement