1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon 921808589b
Updated Database
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-03-11 22:00:05 +01:00

34 lines
554 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Guardians Rising'
const card: Card = {
name: {
fr: "Pectorius",
en: "Hala",
},
illustrator: "Naoki Saito",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
en: "Shuffle your hand into your deck. If you have used your GX attack, draw 7 cards. If not, draw 4 cards.",
fr: "Mélangez votre main avec votre deck. Si vous avez utilisé votre attaque GX, piochez 7 cartes. Sinon, piochez 4 cartes.",
},
trainerType: "Supporter",
}
export default card