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

76 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Purugly",
fr: "Chaffreux",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
432,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Glameow",
fr: "Chaglam",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "High Hat",
fr: "Chapeau haut",
},
effect: {
en: "Choose 1 card from your opponent's hand without looking and discard it.",
fr: "Choisissez sans regarder 1 carte de la main de votre adversaire et défaussez-la.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Body Slam",
fr: "Plaquage",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
retreat: 1,
}
export default card