1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

90 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 7'
const card: Card = {
name: {
en: "Flaaffy",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
180,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Mareep",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Attract Current",
},
effect: {
en: "Search your deck for a Lightning Energy card and attach it to 1 of your Pokémon. Shuffle your deck afterward.",
},
damage: 10,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Electromagnetic Kick",
},
effect: {
en: "Flip a coin. If tails, Flaaffy does 10 damage to itself.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
description: {
en: "If its coat becomes fully charged with electricity, its tail lights up. It fire hair that zaps on impact."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card