mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
58 lines
984 B
TypeScript
58 lines
984 B
TypeScript
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 |