1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

60 lines
1.2 KiB
TypeScript
Raw Permalink 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: "オンバット",
'zh-tw': "嗡蝠",
'zh-cn': "嗡蝠"
},
illustrator: "Tomokazu Komiya",
rarity: "Common",
category: "Pokemon",
dexId: [714],
hp: 60,
types: ["Colorless"],
description: {
ja: "大きな 耳から 超音波を 出して エサの 果物を 探す。 カジッチュを エサと 間違える。",
'zh-tw': "從大大的耳朵發出超音波, 尋找水果來填飽肚子。 會把啃果蟲誤認成食物。",
'zh-cn': "從大大的耳朵發出超音波, 尋找水果來填飽肚子。 會把啃果蟲誤認成食物。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "クイックドロー",
'zh-tw': "快速抽出",
'zh-cn': "快速抽出"
},
damage: 10,
effect: {
ja: "自分の山札を1枚引く。",
'zh-tw': "從自己的牌庫抽出1張卡。",
'zh-cn': "從自己的牌庫抽出1張卡。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "I"
}
export default card