1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

feat: Add SV9 (#674)

This commit is contained in:
2025-02-28 08:44:38 +01:00
committed by GitHub
parent 19dccfd5d7
commit e4099defdb
133 changed files with 7333 additions and 0 deletions

58
data-asia/SV/SV9/101.ts Normal file
View File

@ -0,0 +1,58 @@
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