1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

77 lines
1.0 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 '../Expedition Base Set'
const card: Card = {
name: {
en: "Flaaffy",
fr: "Lainergie",
de: "Waaty"
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
180,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Mareep",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Headbutt",
fr: "Coup d'boule",
de: "Kopfnuss"
},
damage: 20,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunder Jolt",
fr: "Secousse tonnerre",
de: "Donnerrüttler"
},
effect: {
en: "Flip a coin. If tails, Flaaffy does 20 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Lainergie s'inflige 20 dégâts.",
de: "Wirf eine Münze. Bei 'Zahl' fügt sich Waaty selber 20 Schadenspunkte zu."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card