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

58 lines
984 B
TypeScript
Raw Permalink 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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "マラカッチ"
},
illustrator: "Ounishi",
rarity: "None",
category: "Pokemon",
dexId: [556],
hp: 110,
types: ["Grass"],
description: {
ja: "1年に 一度 種を まく。 花の 種は 栄養満点で 砂漠の 貴重な 食料。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "さくれつばり"
},
effect: {
ja: "このポケモンが、バトル場で相手のポケモンからワザのダメージを受けてきぜつしたとき、ワザを使ったポケモンにダメカンを6個のせる。"
}
}],
attacks: [{
cost: ["Colorless"],
name: {
ja: "おいつめる"
},
damage: 20,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2
}
export default card