mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
71 lines
1.1 KiB
TypeScript
71 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Team Rocket Returns'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Mudkip Star",
|
||
de: "Hydropi *"
|
||
},
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
258,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Whirlpool",
|
||
de: "Whirlpool"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
|
||
de: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Spring Back",
|
||
de: "Spring Back"
|
||
},
|
||
effect: {
|
||
en: "If your opponent has only 1 Prize card left, this attack does 20 damage plus 50 more damage and the Defending Pokémon is now Asleep.",
|
||
de: "If your opponents has only 1 Prize card left, this attack does 20 damage plus 50 more damage and the Defending Pokémon is now Asleep."
|
||
},
|
||
damage: "20+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|