mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
46 lines
775 B
TypeScript
46 lines
775 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV5a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "カジッチュ"
|
|
},
|
|
|
|
illustrator: "Katsunori Sato",
|
|
category: "Pokemon",
|
|
dexId: [840],
|
|
hp: 40,
|
|
types: ["Dragon"],
|
|
|
|
description: {
|
|
ja: "りんごの 中で 暮らしている。 りんごが なくなると 体の 水分が 抜けて 弱ってしまう。"
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
ja: "ともだちをさがす"
|
|
},
|
|
|
|
effect: {
|
|
ja: "自分の山札からポケモンを1枚選び、相手に見せて、手札に加える。そして山札を切る。"
|
|
}
|
|
}, {
|
|
cost: ["Grass", "Fire"],
|
|
|
|
name: {
|
|
ja: "ころがりタックル"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |