mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-09 18:47:50 +00:00
96 lines
1.4 KiB
TypeScript
96 lines
1.4 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: "xy8-92",
|
|
localId: 92,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Zoroark BREAK",
|
|
fr: "Zoroark TURBO",
|
|
},
|
|
|
|
hp: 140,
|
|
|
|
type: [
|
|
Type.DARKNESS,
|
|
],
|
|
|
|
dexId: 571,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy8/92/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy8/92/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy8/92/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy8/92/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Zoroark",
|
|
fr: "Zoroark",
|
|
},
|
|
|
|
tags: [
|
|
Tag.BREAK,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 4,
|
|
name: "5ban Graphics"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.DARKNESS
|
|
],
|
|
name: {
|
|
en: "Foul Play",
|
|
fr: "Règle des Évolutions TURBO",
|
|
},
|
|
text: {
|
|
en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.DARKNESS
|
|
],
|
|
name: {
|
|
fr: "Tricherie",
|
|
},
|
|
text: {
|
|
fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.RareBREAK,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "BREAKthrough",
|
|
code: "xy8"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|