1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

Updated Datas

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-03-16 21:11:34 +01:00
parent c280411122
commit 5154b2c15a
189 changed files with 560 additions and 605 deletions

71
cards/sm/smp/SM225.ts Normal file
View File

@ -0,0 +1,71 @@
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 Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "smp-SM225",
localId: "SM225",
// Card informations
name: {
fr: "Victini"
},
hp: 70,
type: [
Type.FIRE,
],
dexId: 494,
tags: [
Tag.BASIC,
],
illustrator: "Nagimiso",
attacks: [{
cost: [
Type.FIRE
],
name: {
fr: "V de Victoire",
},
text: {
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie de base de diffférents types et attachez-les à vos Pokémon, de la manière que vous voulez. Mélangez ensuite cotre deck.",
},
}, {
cost: [
Type.FIRE
],
name: {
fr: "Flamboiement"
},
damage: 20
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "SM Black Star Promos",
code: "smp"
}
}
export default card