1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

107 lines
1.7 KiB
TypeScript

import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "dp4-50",
localId: 50,
// Card informations
name: {
en: "Purugly",
fr: "Chaffreux",
},
hp: 90,
type: [
Type.COLORLESS,
],
dexId: 432,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp4/50/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/50/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp4/50/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/50/high.png",
},
},
evolveFrom: {
en: "Glameow",
fr: "Chaglam",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Swagger",
fr: "Vantardise",
},
text: {
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: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Fury Swipes",
fr: "Combo-griffe",
},
text: {
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: Type.FIGHTING,
value: "+20"
}],
retreat: 2,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Great Encounters",
code: "dp4"
}
}
export default card