1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 829d78fa6f
Added Celebrations Datas (#124)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:21:38 +02:00

60 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
set: Set,
name: {
en: "Dark Gyarados"
},
illustrator: "Kagemaru Himeno",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Stage1",
attacks: [{
name: {
en: "Ice Beam"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
},
damage: 30,
cost: ["Water", "Water", "Water"]
}],
weaknesses: [{
type: "Grass",
value: ""
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
description: {
en: "Normally found only in the deep ocean, it has recently been seen in shallow waters as well."
},
abilities: [{
type: "Pokemon Power",
name: {
en: "Final Beam"
},
effect: {
en: "When Dark Gyarados is Knocked Out by an attack, flip a coin. If heads, this power does 20 damage for each Water Energy attached to Dark Gyarados to the Pokémon that Knocked Out Dark Gyarados. Apply Weakness and Resistance. This power doesn't work if Dark Gyarados is Asleep, Confused, or Paralyzed."
}
}]
}
export default card