mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-14 21:59:51 +00:00
61 lines
1.1 KiB
TypeScript
61 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Scarlet & Violet"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Flittle",
|
||
fr: "Flotillon",
|
||
es: "Flittle",
|
||
it: "Flittle",
|
||
pt: "Flittle",
|
||
de: "Flattutu"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 40,
|
||
types: ["Psychic"],
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Psychic"],
|
||
|
||
name: {
|
||
en: "Dash Off",
|
||
fr: "Déguerpissement",
|
||
es: "Salir Volando",
|
||
it: "Affrettarsi",
|
||
pt: "Corridela",
|
||
de: "Wegflitzen"
|
||
},
|
||
|
||
effect: {
|
||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||
fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc.",
|
||
es: "Cambia este Pokémon por uno de tus Pokémon en Banca.",
|
||
it: "Scambia questo Pokémon con uno della tua panchina.",
|
||
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco.",
|
||
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
|
||
},
|
||
|
||
damage: 10
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G",
|
||
illustrator: "Pani Kobayashi",
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}]
|
||
}
|
||
|
||
export default card |