1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

93 lines
2.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Dragon Majesty'
const card: Card = {
name: {
en: "Gyarados",
fr: "Léviator",
es: "Gyarados",
it: "Gyarados",
pt: "Gyarados",
de: "Garados"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
130,
],
hp: 160,
types: [
"Water",
],
evolveFrom: {
en: "Magikarp",
fr: "Magicarpe",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Commotion",
fr: "Commotion",
es: "Conmoción",
it: "Subbuglio",
pt: "Comoção",
de: "Tumult"
},
effect: {
en: "If this Pokémon is your Active Pokémon and is damaged by an opponents attack (even if this Pokémon is Knocked Out), put 2 damage counters on each of your Benched Pokémon.",
fr: "Si ce Pokémon est votre Pokémon Actif et quil subit les dégâts dune attaque de votre adversaire (même si ce Pokémon est mis K.O.), placez 2 marqueurs de dégâts sur chacun de vos Pokémon de Banc.",
es: "Si este Pokémon es tu Pokémon Activo y resulta dañado por un ataque de tu rival (incluso si este Pokémon queda Fuera de Combate), pon 2 contadores de daño en cada uno de tus Pokémon en Banca.",
it: "Se questo Pokémon è il tuo Pokémon attivo e viene danneggiato da un attacco del tuo avversario, anche se viene messo KO, metti due segnalini danno su ognuno dei tuoi Pokémon in panchina.",
pt: "Se este Pokémon for o seu Pokémon Ativo e for danificado por um ataque do seu oponente (mesmo que este Pokémon seja Nocauteado), coloque 2 contadores de dano em cada um dos seus Pokémon no Banco.",
de: "Wenn dieses Pokémon dein Aktives Pokémon ist und durch einen gegnerischen Angriff Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 2 Schadensmarken auf jedes Pokémon auf deiner Bank."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Wild Tail",
fr: "Queue Déchaînée",
es: "Cola Salvaje",
it: "Codafuria",
pt: "Cauda Selvagem",
de: "Wilder Schweif"
},
effect: {
en: "You may discard any Stadium card in play.",
fr: "Vous pouvez défausser toute carte Stade en jeu.",
es: "Puedes descartar cualquier carta de Estadio en juego.",
it: "Puoi scartare una carta Stadio in gioco.",
pt: "Você pode descartar qualquer carta de Estádio em jogo.",
de: "Du kannst 1 beliebige Stadionkarte im Spiel auf den Ablagestapel legen."
},
damage: 160,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 4,
}
export default card