1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon ec1b6a06b0
Add regulation mark (#17)
* Added to interface

* Added Regulation mark to all current cards

* Ready for merge
2021-05-28 11:21:10 +02:00

70 lines
898 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Gyarados",
fr: "Léviator"
},
illustrator: "hatachu",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Magikarp",
fr: "Magicarpe"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Wrack Down",
fr: "Réduire en Poussière"
},
damage: 90,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Big Storm",
fr: "Forte Tempête"
},
effect: {
en: "Discard any Stadium in play.",
fr: "Défaussez tout Stade en jeu."
},
damage: 200,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 4,
hp: 180,
types: ["Water"],
regulationMark: "D"
}
export default card