mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-18 06:19:54 +00:00
23 lines
440 B
TypeScript
23 lines
440 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Helix Fossil"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Play this card as if it were a 40-HP Basic C Pokémon.\nAt any time during your turn, you may discard this card from play.\nThis card can't retreat."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
rarity: "One Diamond"
|
|
}
|
|
|
|
export default card
|