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

60 lines
1.1 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 '../Sandstorm'
const card: Card = {
name: {
en: "Marill",
fr: "Marill",
de: "Marill"
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
183,
],
hp: 50,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Double Bubble",
fr: "Double bulle",
de: "Doppel Seifenblase"
},
effect: {
en: "Flip 2 coins. This attack does 10 damage times the number of heads. If either of the coins is heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez deux pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de face. Dès que c'est face, le Pokémon Défenseur est Paralysé.",
de: "Wirf 2 Münzen. Dieser Angriff fügt 10 Schadenspunkte mal der Anzahl 'Kopf' zu. Wenn mindestens eine der Münzen 'Kopf' zeigt, ist das Verteidigende Pokémon jetzt gelähmt."
},
damage: "10x",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card