1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

54
data-asia/SV/SV10/076.ts Normal file
View File

@ -0,0 +1,54 @@
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