1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 21:32:17 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

71 lines
989 B
TypeScript

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: "sm2-143",
localId: 143,
// Card informations
name: {
fr: "Pectorius",
},
image: {
low: {
fr: "https://assets.tcgdex.net/fr/sm/sm2/143/low",
},
high: {
fr: "https://assets.tcgdex.net/fr/sm/sm2/143/high",
},
},
evolveFrom: {},
tags: [
Tag.SUPPORTER,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
attacks: [{
name: {},
text: {
fr: "Mélangez votre main avec votre deck. Si vous avez utilisé votre attaque GX, piochez 7 cartes. Sinon, piochez 4 cartes.",
},
}],
rarity: Rarity.RareUltra,
category: Category.TRAINER,
set: {
name: "Gardiens Ascendants",
code: "sm2"
}
}
export default card