mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
62 lines
910 B
TypeScript
62 lines
910 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragon Frontiers'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Flaaffy δ",
|
||
fr: "Lainergie δ",
|
||
de: "Waaty"
|
||
},
|
||
illustrator: "Yuka Morii",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
180,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
evolveFrom: {
|
||
en: "Mareep",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Thundershock",
|
||
fr: "Éclair",
|
||
de: "Donnerschock"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|