1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

54 lines
1.2 KiB
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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>小拉達",
'zh-cn': "<火箭隊的>小拉達",
ja: "ロケット団のコラッタ"
},
illustrator: "Dsuke",
category: "Pokemon",
hp: 50,
types: ["Colorless"],
description: {
'zh-tw': "雖然是常見的寶可夢,但還是要小心。 銳利的門牙十分堅硬, 就連木材也能輕易咬斷。",
'zh-cn': "雖然是常見的寶可夢,但還是要小心。 銳利的門牙十分堅硬, 就連木材也能輕易咬斷。",
ja: "ありふれた ポケモンだが 注意。 鋭い 前歯は 堅い 材木さえ 簡単に へしおる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "險惡門牙",
'zh-cn': "險惡門牙",
ja: "あぶないまえば"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
'zh-cn': "將對手的戰鬥寶可夢【中毒】。",
ja: "相手のバトルポケモンをどくにする。"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [19]
}
export default card