mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
73 lines
1.0 KiB
TypeScript
73 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Steam Siege'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Marill",
|
||
fr: "Marill",
|
||
es: "Marill",
|
||
it: "Marill",
|
||
pt: "Marill",
|
||
de: "Marill"
|
||
},
|
||
illustrator: "Shibuzoh.",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
183,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Fairy",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
],
|
||
name: {
|
||
en: "Bubble Drain",
|
||
fr: "Vide Bulle",
|
||
es: "Drenaje Burbujas",
|
||
it: "Assorbibolla",
|
||
pt: "Dreno de Bolha",
|
||
de: "Blasengully"
|
||
},
|
||
effect: {
|
||
en: "Heal 10 damage from this Pokémon.",
|
||
fr: "Soignez 10 dégâts à ce Pokémon.",
|
||
es: "Cura 10 puntos de daño a este Pokémon.",
|
||
it: "Cura questo Pokémon da 10 danni.",
|
||
pt: "Cure 10 de danos deste Pokémon.",
|
||
de: "Heile 10 Schadenspunkte bei diesem Pokémon."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Darkness",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|