mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
77 lines
1.4 KiB
TypeScript
77 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Arceus'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Spiritomb",
|
|
de: "Kryppuk"
|
|
},
|
|
illustrator: "Aya Kusube",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
442,
|
|
],
|
|
|
|
types: [
|
|
"Darkness",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-BODY",
|
|
name: {
|
|
en: "Keystone Seal",
|
|
de: "Spiritkern-Siegel"
|
|
},
|
|
effect: {
|
|
en: "As long as Spiritomb is your Active Pokémon, each player can't play any Trainer cards from his or her hand.",
|
|
de: "Solange Kryppuk dein Aktives Pokémon ist, kann kein Spieler Trainerkarten von seiner Hand spielen."
|
|
},
|
|
},
|
|
],
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Darkness Grace",
|
|
de: "Gnade der Finsternis"
|
|
},
|
|
effect: {
|
|
en: "Search your deck for a card that evolves from 1 of your Pokémon and put it onto that Pokémon. (This counts as evolving that Pokémon.) If you do, put 1 damage counter on Spiritomb. Shuffle your deck afterward.",
|
|
de: "Durchsuche dein Deck nach 1 Karte, die sich aus 1 deiner Pokémon entwickelt, und lege sie auf dieses Pokémon. (Dies zählt als Entwickeln von diesem Pokémon.) Wenn du das machst, lege 1 Schadensmarke auf Kryppuk. Mische dein Deck danach."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Darkness",
|
|
],
|
|
name: {
|
|
en: "Will-o'-the-wisp",
|
|
de: "Irrlicht"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Colorless",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|