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

51 lines
730 B
TypeScript
Raw 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: "sowsow",
rarity: "None",
category: "Pokemon",
dexId: [714],
hp: 60,
types: ["Colorless"],
description: {
ja: "大きな 耳から 超音波を 出して エサの 果物を 探す。 カジッチュを エサと 間違える。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "クイックドロー"
},
damage: 10,
effect: {
ja: "自分の山札を1枚引く。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1
}
export default card