1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +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

72 lines
846 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 1'
const card: Card = {
name: {
en: "Beautifly",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
267,
],
hp: 100,
types: [
"Grass",
],
evolveFrom: {
en: "Silcoon",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Blot",
},
effect: {
en: "Remove 1 damage counter from Beautifly.",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Whirlwind",
},
effect: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire"
},
],
retreat: 0
}
export default card