1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00
Files
cards-database/data/Diamond & Pearl/Diamond & Pearl/36.ts
Florian Bouillon d4be6fa84f fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

82 lines
1.2 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,
description: {
fr: "Cette brute arrogante n'hésite pas à voler le nid d'autres Pokémon pour s'y installer."
}
}
export default card