1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

98
cards/sm/sm35/13.ts Normal file
View File

@ -0,0 +1,98 @@
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: "sm35-13",
localId: 13,
// Card informations
name: {
en: "Volcarona",
fr: "Pyrax",
},
hp: 120,
type: [
Type.FIRE,
],
dexId: 637,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm35/13/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm35/13/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm35/13/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm35/13/high.png",
},
},
evolveFrom: {
en: "Larvesta",
fr: "Pyronille",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 65,
name: "nagimiso"
},
abilities: [{
id: 1214,
type: AbilityType.TALENT,
name: {
en: "Heat Cyclone",
fr: "Cyclone de Chaleur",
},
text: {
en: "Once during your turn (before your attack), you may have your opponent switch their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez demander à votre adversaire d'échanger son Pokémon Actif avec l'un de ses Pokémon de Banc.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Heat Blast",
fr: "Explosion de Chaleur",
},
damage: 60
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Shining Legends",
code: "sm35"
}
}
export default card