1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

66 lines
971 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Lopunny",
},
illustrator: "Kyoko Umemoto",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
428,
],
types: [
"Colorless",
],
evolveFrom: {
en: "Buneary",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Relaxing Shower",
},
effect: {
en: "Once during your turn (before your attack), you may discard an Energy card from your hand. If you do, remove 1 damage counter from each of your Pokémon. This power can't be used if Lopunny is affected by a Special Condition.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Hover Heal",
},
effect: {
en: "Remove all Special Conditions from Lopunny.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
retreat: 1,
}
export default card