1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +00:00

66 lines
1.4 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 "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Marowak ex",
fr: "Ossatueur-ex",
es: "Marowak ex",
it: "Marowak-ex",
de: "Knogga-ex",
'pt-br': "Marowak ex",
ko: "텅구리 ex"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
stage: "Stage1",
evolveFrom: {
en: "Cubone"
},
suffix: "EX",
attacks: [{
cost: ["Fighting", "Fighting"],
name: {
en: "Bonemerang",
fr: "Osmerang",
es: "Huesomerang",
it: "Ossomerang",
de: "Knochmerang",
'pt-br': "Ossomerangue",
ko: "뼈다귀부메랑"
},
effect: {
en: "Flip 2 coins. This attack does 80 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 80 dégâts pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 80 puntos de daño por cada cara.",
it: "Lancia 2 volte una moneta. Questo attacco infligge 80 danni ogni volta che esce testa.",
de: "Wirf 2 Münzen. Diese Attacke fügt 80 Schadenspunkte pro Kopf zu.",
'pt-br': "Jogue 2 moedas. Este ataque causa 80 pontos de dano para cada cara.",
ko: "동전을 2번 던져서 앞면이 나온 수 × 80데미지를 준다."
},
damage: "80×"
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 1,
rarity: "Four Diamond",
boosters: ["mewtwo"]
}
export default card