1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 46220745ce
Pop serie do not report any sets (#27)
* rename to another name
* renamed
* Renamed references
2021-06-02 12:13:12 +02:00

75 lines
975 B
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"
},
],
}
export default card