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

Added whole Sword Shied promo set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-08 17:56:27 +01:00
parent c7f337c7fd
commit 3e883bf09c
13 changed files with 931 additions and 0 deletions

View File

@ -0,0 +1,78 @@
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'
import path from 'path'
import set from '../../../sets/swsh/swshp'
const localId = path.basename(__filename).split(".")[0]
const card: Card = {
// ids
id: `swshp-${localId}`,
localId: localId,
// Card informations
name: {
fr: "Ponyta de Galar",
},
hp: 70,
type: [
Type.PSYCHIC,
],
tags: [
Tag.BASIC,
],
illustrator: {
id: 95,
name: "kirisAki"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
fr: "Vibra Soin",
},
text: {
fr: "Soignez 30 dégâts de l'un de vos Pokémon."
}
}, {
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
fr: "Flop"
},
damage: 20
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-30"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set,
}
export default card