mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
92 lines
1.5 KiB
TypeScript
92 lines
1.5 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: "xy12-32",
|
||
localId: 32,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Starmie BREAK",
|
||
fr: "Staross TURBO",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 121,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy12/32/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy12/32/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy12/32/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy12/32/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Starmie",
|
||
fr: "Staross",
|
||
},
|
||
|
||
tags: [
|
||
Tag.BREAK,
|
||
],
|
||
|
||
illustrator: "5ban Graphics",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.WATER
|
||
],
|
||
name: {
|
||
en: "Break Star",
|
||
fr: "Règle des Évolutions TURBO",
|
||
},
|
||
text: {
|
||
en: "This attack does 100 damage to each of your opponent's Pokémon BREAK. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.WATER
|
||
],
|
||
name: {
|
||
fr: "Étoile Turbo",
|
||
},
|
||
text: {
|
||
fr: "Cette attaque inflige 100 dégâts à chacun des Pokémon TURBO de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
},
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Evolutions",
|
||
code: "xy12"
|
||
}
|
||
}
|
||
|
||
export default card
|