mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
76
data/Diamond & Pearl/Great Encounters/50.ts
Normal file
76
data/Diamond & Pearl/Great Encounters/50.ts
Normal file
@ -0,0 +1,76 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Great Encounters'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Purugly",
|
||||
fr: "Chaffreux",
|
||||
},
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
432,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Glameow",
|
||||
fr: "Chaglam",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Swagger",
|
||||
fr: "Vantardise",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.",
|
||||
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Fury Swipes",
|
||||
fr: "Combo-griffe",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 40 damage times the number of heads.",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de faces.",
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user