mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
72 lines
977 B
TypeScript
72 lines
977 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Skyridge'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Poliwag",
|
||
de: "Quapsel"
|
||
},
|
||
illustrator: "Miki Tanaka",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
60,
|
||
],
|
||
hp: 40,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Sleep Bubble",
|
||
de: "Schlafblase"
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon is now Asleep.",
|
||
de: "Das verteidigende Pokémon schläft jetzt."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Doubleslap",
|
||
de: "Duplexhieb"
|
||
},
|
||
effect: {
|
||
en: "Flip 2 coins. This attack does 20 damage times the number of heads.",
|
||
de: "Wirf 2 Münzen. Dieser Angriff frügt 20 Schadenspunkte mal der Anzahl \"Kopf\" zu."
|
||
},
|
||
damage: "20x",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|