mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
91 lines
1.8 KiB
TypeScript
91 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Jungle'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Marowak",
|
||
fr: "Ossatueur",
|
||
de: "Knogga"
|
||
},
|
||
|
||
illustrator: "Mitsuhiro Arita",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
105,
|
||
],
|
||
|
||
hp: 60,
|
||
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Cubone",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Bonemerang",
|
||
fr: "Osmerang",
|
||
de: "Knochmerang"
|
||
},
|
||
effect: {
|
||
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de faces.",
|
||
de: "Wirf zwei Münzen. Dieser Angriff fügt jedesmal, wenn die Münze 'Kopf' zeigt, 30 Schadenspunkte zu."
|
||
},
|
||
damage: "30x",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Call for Friend",
|
||
fr: "À la rescousse !",
|
||
de: "Freundesruf"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for a Fighting Basic Pokémon card and put it onto your Bench. Shuffle your deck afterward. (You can't use this attack if your Bench is full.)",
|
||
fr: "Cherchez dans votre deck une carte Pokémon de base et placez-la sur votre Banc. Mélangez ensuite votre deck. (Vous ne pouvez pas utiliser cette attaque si votre Banc est plein.)",
|
||
de: "Suche in deinem Deck nach einer Basis-Pokémon-Karte und lege sie auf deine Bank. Mische dein Deck danach. (Du kannst diesen Angriff nicht einsetzen, wenn deine Bank voll ist.)"
|
||
},
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Lightning",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
description: {
|
||
fr: "L'os qu'il tient dans sa main est une arme. Il peut le lancer avec adresse pour assommer sa proie."
|
||
}
|
||
}
|
||
|
||
export default card
|