1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 22:32:10 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

69 lines
876 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"]
}
export default card