mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paradox Rift"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Flittle",
|
|
fr: "Flotillon",
|
|
es: "Flittle",
|
|
it: "Flittle",
|
|
pt: "Flittle",
|
|
de: "Flattutu"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic", "Psychic"],
|
|
|
|
name: {
|
|
en: "Psychic",
|
|
fr: "Psyko",
|
|
es: "Psíquico",
|
|
it: "Psichico",
|
|
pt: "Psíquico",
|
|
de: "Psychokinese"
|
|
},
|
|
|
|
effect: {
|
|
en: "This attack does 10 more damage for each Energy attached to your opponent's Active Pokémon.",
|
|
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
|
|
es: "Este ataque hace 10 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
|
|
it: "Questo attacco infligge 10 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
|
|
pt: "Este ataque causa 10 pontos de dano a mais para cada Energia ligada ao Pokémon Ativo do seu oponente.",
|
|
de: "Diese Attacke fügt für jede an das Aktive Pokémon deines Gegners angelegte Energie 10 Schadenspunkte mehr zu."
|
|
},
|
|
|
|
damage: "10+"
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |