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

74 lines
1.1 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 '../Neo Destiny'
const card: Card = {
name: {
en: "Light Wigglytuff",
},
illustrator: "Naoyo Kimura",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
40,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Jigglypuff",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Evolution Song",
},
effect: {
en: "Your opponent may choose 1 of his or her Pokémon and search his or her deck for a card that evolves from that Pokémon. Your opponent attaches that card to that Pokémon. This counts as evolving that Pokémon. Either way, you may do the same, and then each player who searched shuffles his or her deck.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Body Slam",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card