1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +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: "Flygon",
fr: "Libégon",
es: "Flygon",
it: "Flygon",
pt: "Flygon",
de: "Libelldra"
},
illustrator: "Shigenori Negishi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
330,
],
hp: 140,
types: [
"Dragon",
],
evolveFrom: {
en: "Vibrava",
fr: "Vibraninf",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Dragon Guard",
fr: "Garde des Dragons",
es: "Guardia Dragón",
it: "Dragoguardia",
pt: "Protetor de Dragões",
de: "Drachenschutz"
},
effect: {
en: "Prevent all effects of your opponents attacks, except damage, done to your Dragon Pokémon. (Existing effects are not removed.)",
fr: "Évitez tous les effets des attaques de votre adversaire, à lexception des dégâts, infligés à vos Pokémon Dragon. (Les effets déjà en action ne sont pas retirés.)",
es: "Evita todos los efectos de los ataques de tu rival, excepto el daño, infligidos a tus Pokémon Dragon. (No se eliminan los efectos ya existentes).",
it: "Previeni tutti gli effetti degli attacchi del tuo avversario, esclusi i danni, inflitti ai tuoi Pokémon Dragon. Gli effetti esistenti non vengono rimossi.",
pt: "Previne todos os efeitos de ataques do seu oponente, exceto dano, causados aos seus Pokémon Dragon (efeitos existentes não são removidos).",
de: "Verhindere alle Effekte von Attacken deines Gegners, außer Schaden, die deinen Dragon-Pokémon zugefügt werden. (Bestehende Effekte werden nicht entfernt.)"
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Sand Tomb",
fr: "Tourbi-Sable",
es: "Bucle Arena",
it: "Sabbiotomba",
pt: "Fosso de Areia",
de: "Sandgrab"
},
effect: {
en: "The Defending Pokémon cant retreat during your opponents next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
es: "El Pokémon Defensor no puede retirarse durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
pt: "O Pokémon Defensor não poderá recuar durante a próxima vez de jogar do seu oponente.",
de: "Das Verteidigende Pokémon kann sich während des nächsten Zuges deines Gegners nicht zurückziehen."
},
damage: 110,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 1,
}
export default card