1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +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

63
data-asia/SV/SV10/052.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "大朝北鼻",
'zh-cn': "大朝北鼻",
ja: "ダイノーズ"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
description: {
'zh-tw': "會以磁力操縱3個 被稱為小朝北鼻的組件, 從3個方向解決對手。",
'zh-cn': "會以磁力操縱3個 被稱為小朝北鼻的組件, 從3個方向解決對手。",
ja: "3個の チビノーズと 呼ばれる ユニットを 磁力で 操り 3方向から 相手を 仕留める。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "力量寶石",
'zh-cn': "力量寶石",
ja: "パワージェム"
},
damage: 40,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "山岳墜落",
'zh-cn': "山岳墜落",
ja: "マウンテンフォール"
},
effect: {
'zh-tw': "若場上有競技場卡則增加70點傷害。",
'zh-cn': "若場上有競技場卡則增加70點傷害。",
ja: "場にスタジアムが出ているなら、70ダメージ追加。"
},
damage: "70",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "I",
rarity: "Uncommon",
dexId: [476]
}
export default card