1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

94 lines
3.0 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Flapple",
fr: "Pomdrapi",
es: "Flapple",
it: "Flapple",
pt: "Flapple",
de: "Drapfel"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Applin",
fr: "Verpom"
},
abilities: [
{
type: "Ability",
name: {
en: "Apple Drop",
fr: "Chute de Pommes",
es: "Caída de Manzanas",
it: "Caduta Mele",
pt: "Maçã Caída",
de: "Apfelfall"
},
effect: {
en: "Once during your turn, you may put 2 damage counters on 1 of your opponents Pokémon. If you placed any damage counters in this way, shuffle this Pokémon and all attached cards into your deck.",
fr: "Une fois pendant votre tour, vous pouvez placer 2 marqueurs de dégâts sur lun des Pokémon de votre adversaire. Si vous avez placé des marqueurs de dégâts de cette façon, mélangez dans votre deck ce Pokémon et toutes les cartes attachées.",
es: "Una vez durante tu turno, puedes poner 2 contadores de daño en 1 de los Pokémon de tu rival. Si has puesto algún contador de daño de esta manera, pon este Pokémon y todas las cartas unidas a él en tu baraja, y baraja todas las cartas.",
it: "Una sola volta durante il tuo turno, puoi mettere due segnalini danno su uno dei Pokémon del tuo avversario. Se hai messo dei segnalini danno in questo modo, rimischia questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo.",
pt: "Uma vez durante o seu turno, você poderá colocar 2 contadores de dano em 1 dos Pokémon do seu oponente. Se você colocou algum contador de dano desta forma, embaralhe este Pokémon e todas as cartas ligadas a ele no seu baralho.",
de: "Einmal während deines Zuges kannst du 2 Schadensmarken auf 1 Pokémon deines Gegners legen. Wenn du auf diese Weise Schadensmarken platziert hast, mische dieses Pokémon und alle angelegten Karten in dein Deck."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Acid Spray",
fr: "Bombe Acide",
es: "Bomba Ácida",
it: "Acidobomba",
pt: "Spray Ácido",
de: "Säurespeier"
},
effect: {
en: "Flip a coin. If heads, discard an Energy from your opponents Active Pokémon.",
fr: "Lancez une pièce. Si cest face, défaussez une Énergie du Pokémon Actif de votre adversaire.",
es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Lancia una moneta. Se esce testa, scarta unEnergia dal Pokémon attivo del tuo avversario.",
pt: "Jogue 1 moeda. Se sair cara, descarte 1 Energia do Pokémon Ativo do seu oponente.",
de: "Wirf 1 Münze. Lege bei Kopf 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
hp: 80,
types: ["Grass"],
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card