mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
101 lines
1.8 KiB
TypeScript
101 lines
1.8 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: "sm35-27",
|
||
localId: 27,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Shining Volcanion",
|
||
fr: "Volcanion Brillant",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 721,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm35/27/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm35/27/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm35/27/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm35/27/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Hitoshi Ariga",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.WATER,
|
||
Type.WATER
|
||
],
|
||
name: {
|
||
en: "Dual Pump",
|
||
fr: "Double Pompe",
|
||
},
|
||
text: {
|
||
en: "This attack does 50 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Cette attaque inflige 50 dégâts à 2 des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Quad Smash",
|
||
fr: "Quadruple Destruction",
|
||
},
|
||
text: {
|
||
en: "Flip 4 coins. This attack does 50 damage for each heads.",
|
||
fr: "Lancez 4 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
|
||
},
|
||
damage: 50
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Shining Legends",
|
||
code: "sm35"
|
||
}
|
||
}
|
||
|
||
export default card
|