1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

100
cards/sm/sm10/25.ts Normal file
View File

@ -0,0 +1,100 @@
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