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

59 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 "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Marill",
fr: "Marill",
es: "Marill",
it: "Marill",
pt: "Marill"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Ball Roll",
fr: "Boulé-Roulade",
es: "Rodabola",
it: "Rotopalla",
pt: "Rolo Bola"
},
effect: {
en: "Flip a coin until you get tails. This attack does 10 damage for each heads.",
fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 10 dégâts pour chaque côté face.",
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 10 puntos de daño por cada cara.",
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 10 danni ogni volta che esce testa.",
pt: "Jogue uma moeda até sair coroa. Este ataque causa 10 pontos de dano para cada cara."
},
damage: "10×"
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
en: "Magical Shot",
fr: "Coup Magique",
es: "Disparo Mágico",
it: "Magicolpo",
pt: "Tiro Mágico"
},
damage: 40
}],
retreat: 2,
regulationMark: "H"
}
export default card