mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
102 lines
1.6 KiB
TypeScript
102 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: "xyp-XY18",
|
||
localId: "XY18",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Chesnaught-EX",
|
||
fr: "Blindépique-EEX",
|
||
},
|
||
|
||
hp: 180,
|
||
|
||
type: [
|
||
Type.GRASS,
|
||
],
|
||
|
||
dexId: 652,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xyp/XY18/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY18/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xyp/XY18/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY18/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.EX,
|
||
],
|
||
|
||
illustrator: "5ban Graphics",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Pin Missile",
|
||
fr: "Dard-Nuée",
|
||
},
|
||
text: {
|
||
en: "Flip 4 coins. This attack does 40 damage times the number of heads.",
|
||
fr: "Lancez 4 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de côtés face.",
|
||
},
|
||
damage: 40
|
||
},{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.GRASS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Wild Tackle",
|
||
fr: "Tacle Brutal",
|
||
},
|
||
text: {
|
||
en: "This Pokémon does 20 damage to itself.",
|
||
fr: "Ce Pokémon s'inflige 20 dégâts.",
|
||
},
|
||
damage: 120
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.COMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "XY Black Star Promos",
|
||
code: "xyp"
|
||
}
|
||
}
|
||
|
||
export default card
|