1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 04:46:14 +00:00

79 lines
1.7 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 '../Platinum'
const card: Card = {
name: {
en: "Purugly G",
fr: "Chaffreux ",
de: "Shnurgarst G"
},
illustrator: "Ryota Saito",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
432,
],
hp: 90,
types: [
"Colorless",
],
stage: "Basic",
suffix: "SP",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Chip Off",
fr: "Grignoter",
de: "Chip Off"
},
effect: {
en: "If your opponent has 6 or more cards in his or her hand, discard a number of cards without looking until your opponent has 5 cards left in his or her hand.",
fr: "Si votre adversaire possède plus de 6 cartes en main, défaussez des cartes sans regarder jusqu'à ce qu'il ne reste à votre adversaire que 5 cartes en main.",
de: "If your opponent has 6 or more cards in his or her hand, discard a number of cards without looking until your opponent has 5 cards left in his or her hand."
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Poor Sleep",
fr: "Sommeil agité",
de: "Poor Sleep"
},
effect: {
en: "Flip a coin. If heads, this attack does 50 damage plus 30 more damage and Purugly is now Asleep.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts plus 30 dégâts supplémentaires et Chaffreux est maintenant Endormi.",
de: "Flip a coin. If heads, this attack does 50 damage plus 30 more damage and Purugly G is now Asleep."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card