1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

101 lines
2.1 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 '../../../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: "sm10-25",
localId: 25,
// Card informations
name: {
en: "Volcanion",
fr: "Volcanion",
},
hp: 120,
type: [
Type.FIRE,
],
dexId: 721,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm10/25/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/25/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm10/25/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/25/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 77,
name: "Satoshi Shirai"
},
attacks: [{
cost: [
Type.FIRE
],
name: {
en: "Flare Starter",
fr: "Allume Flambée",
},
text: {
en: "Search your deck for a Fire Energy card and attach it to 1 of your Pokémon. If you go second and it's your first turn, instead search for up to 3 Fire Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
fr: "Cherchez une carte Énergie Fire dans votre deck et attachez-la à lun de vos Pokémon. Si vous jouez en second et que cest votre premier tour, cherchez jusquà 3 cartes Énergie Fire à la place et attachez-les à vos Pokémon, de la manière que vous voulez. Mélangez ensuite votre deck.",
},
},{
cost: [
Type.FIRE,
Type.FIRE
],
name: {
en: "High-Heat Blast",
fr: "Explosion Haute Température",
},
text: {
en: "If you have at least 4 Fire Energy in play, this attack does 60 more damage.",
fr: "Si vous avez au moins 4 Énergies Fire en jeu, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 50
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Unbroken Bonds",
code: "sm10"
}
}
export default card