mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 20:02:15 +00:00
49 lines
879 B
TypeScript
49 lines
879 B
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
import set from '../../../sets/swsh/swsh35'
|
|
|
|
|
|
const card: Card = {
|
|
// Card Global Informations
|
|
id: "swsh35-56",
|
|
|
|
localId: 56,
|
|
|
|
name: {
|
|
en: "Marnie",
|
|
},
|
|
|
|
|
|
illustrator: "kirisAki",
|
|
|
|
rarity: Rarity.RARE,
|
|
|
|
category: Category.TRAINER,
|
|
|
|
set,
|
|
|
|
|
|
// Card Pokémon Informations
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Card Trainer/Energy informations
|
|
effect: {
|
|
en: "Each player shuffles their hand and puts it on the bottom of their deck. If either player put any cards on the bottom of their deck in this way, you draw 5 cards, and your opponent draws 4 cards.",
|
|
},
|
|
|
|
}
|
|
|
|
export default card |