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

103
cards/sm/sma/SV7.ts Normal file
View File

@ -0,0 +1,103 @@
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: "sma-SV7",
localId: "SV7",
// Card informations
name: {
en: "Charmeleon",
fr: "Reptincel",
},
hp: 80,
type: [
Type.FIRE,
],
dexId: 5,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sma/SV7/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV7/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sma/SV7/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV7/high.png",
},
},
evolveFrom: {
en: "Charmander",
fr: "Salamèche",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 65,
name: "nagimiso"
},
abilities: [{
id: 1180,
type: AbilityType.TALENT,
name: {
en: "Burning Fighter",
fr: "Combattant Brûlant",
},
text: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may discard the top 5 cards of your deck. If any of those cards are Fire Energy cards, attach them to this Pokémon.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer lun de vos Pokémon pendant votre tour, vous pouvez défausser les 5 cartes du dessus de votre deck. Si vous y trouvez des cartes Énergie Fire, attachez-les à ce Pokémon.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Flamethrower",
fr: "Lance-Flammes",
},
text: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
},
damage: 80
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Shiny Vault",
code: "sma"
}
}
export default card