1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

98 lines
1.6 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "pl2-63",
localId: 63,
// Card informations
name: {
en: "Growlithe",
fr: "Caninos Niv. 26",
},
hp: 70,
type: [
Type.FIRE,
],
dexId: 58,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/63/low",
fr: "https://assets.tcgdex.net/fr/pl/pl2/63/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/63/high",
fr: "https://assets.tcgdex.net/fr/pl/pl2/63/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Naoyo Kimura",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Stoke",
fr: "Crémation",
},
text: {
en: "Search your deck for a Fire Energy card and attach it to Growlithe. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck une carte Énergie Fire et attachez-la à Caninos. Ensuite, mélangez votre deck.",
},
},{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Take Down",
fr: "Bélier",
},
text: {
en: "Growlithe does 10 damage to itself.",
fr: "Caninos s'inflige 10 dégâts.",
},
damage: 50
}],
weaknesses: [{
type: Type.WATER,
value: "+20"
}],
retreat: 2,
rarity: Rarity.COMMON,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card