1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

77 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Team Rocket Returns'
const card: Card = {
name: {
en: "Dark Marowak",
de: "Dunkles Knogga"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
105,
],
hp: 70,
types: [
"Fighting",
"Darkness",
],
evolveFrom: {
en: "Cubone",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Brick Smash",
de: "Brick Smash"
},
effect: {
en: "This attack's damage isn't affected by Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.",
de: "This attack's damage isn't affected by Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon."
},
damage: 30,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Hard Bone",
de: "Hard Bone"
},
effect: {
en: "Discard a Basic Pokémon or Evolution card from your hand or this attack does nothing.",
de: "Discard a Basic Pokémon or Evolution card from your hand or this attack does nothing."
},
damage: 70,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card