mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
50 lines
746 B
TypeScript
50 lines
746 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV1V"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ボチ"
|
||
},
|
||
|
||
illustrator: "sowsow",
|
||
category: "Pokemon",
|
||
dexId: [971],
|
||
hp: 70,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
ja: "人懐っこくて 寂しがり。 ちょっと かまっただけでも いつまでも 後を ついてくるぞ。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Psychic"],
|
||
|
||
name: {
|
||
ja: "おはかであそぶ"
|
||
},
|
||
|
||
damage: "10×",
|
||
|
||
effect: {
|
||
ja: "自分のトラッシュにあるポケモンの枚数×10ダメージ。"
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card |