1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

63 lines
1.5 KiB
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 "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Zapétrel",
en: "Wattrel",
es: "Wattrel",
it: "Wattrel",
pt: "Wattrel",
de: "Voltrel"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
fr: "Picpic",
en: "Peck",
es: "Picotazo",
it: "Beccata",
pt: "Bicada",
de: "Pikser"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
fr: "Ailes Unies",
en: "United Wings",
es: "Alas Unidas",
it: "Ali Unite",
pt: "União Alada",
de: "Vereinte Schwingen"
},
effect: {
fr: "Cette attaque inflige 20 dégâts pour chaque Pokémon dans votre pile de défausse ayant l'attaque Ailes Unies.",
en: "This attack does 20 damage for each Pokémon in your discard pile that has the United Wings attack.",
es: "Este ataque hace 20 puntos de daño por cada Pokémon en tu pila de descartes que tenga el ataque Alas Unidas.",
it: "Questo attacco infligge 20 danni per ogni Pokémon nella tua pila degli scarti che ha l'attacco Ali Unite.",
pt: "Este ataque causa 20 pontos de dano para cada Pokémon na sua pilha de descarte que tiver o ataque União Alada.",
de: "Diese Attacke fügt für jedes Pokémon in deinem Ablagestapel, das die Attacke Vereinte Schwingen hat, 20 Schadenspunkte zu."
},
damage: "20×"
}],
retreat: 1,
regulationMark: "G"
}
export default card