1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon a284fcac64
Updated DB and made it work with SDK
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 09:41:29 +01:00

109 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sm6-31",
localId: 31,
// Card informations
name: {
en: "Volcanion ◇",
fr: "Volcanion ",
},
hp: 160,
type: [
Type.WATER,
],
dexId: 721,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm6/31/low",
fr: "https://assets.tcgdex.net/fr/sm/sm6/31/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm6/31/high",
fr: "https://assets.tcgdex.net/fr/sm/sm6/31/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Naoki Saito",
abilities: [{
id: 1206,
type: AbilityType.TALENT,
name: {
en: "Jet Geyser",
fr: "Propulsion Geyser",
},
text: {
en: "Once during your turn (before your attack), you may discard a Water Energy card from your hand. If you do, your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte Énergie Water de votre main. Dans ce cas, votre adversaire échange son Pokémon Actif avec lun de ses Pokémon de Banc.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.WATER,
Type.WATER
],
name: {
en: "Sauna Blast",
fr: "Règle pour les cartes (Prisme Étoile)",
},
text: {
en: "This attack does 20 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 100
},{
cost: [
Type.WATER,
Type.WATER,
Type.WATER
],
name: {
fr: "Sauna Explosif",
},
text: {
fr: "Cette attaque inflige 20 dégâts à chacun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 100
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Forbidden Light",
code: "sm6"
}
}
export default card