mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
34 lines
554 B
TypeScript
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
|