mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-05 08:57:49 +00:00
92 lines
1.3 KiB
TypeScript
92 lines
1.3 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: "xyp-XY92",
|
|
localId: "XY92",
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Sableye",
|
|
fr: "Ténéfix",
|
|
},
|
|
|
|
hp: 70,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 302,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/xy/xyp/XY92/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY92/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/xy/xyp/XY92/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xyp/XY92/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 28,
|
|
name: "match"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC
|
|
],
|
|
name: {
|
|
en: "Energy Hunt",
|
|
fr: "Stop Θ",
|
|
},
|
|
text: {
|
|
en: "Flip 3 coins. For each heads, attach a basic Energy card from your discard pile to your Benched Pokémon-EX in any way you like.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Claw Slash",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
retreat: 2,
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "XY Black Star Promos",
|
|
code: "xyp"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|