1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

62
data-asia/SV/SV10/072.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>狃拉",
'zh-cn': "<火箭隊的>狃拉",
ja: "ロケット団のニューラ"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 80,
types: ["Darkness"],
description: {
'zh-tw': "會潛藏在黑暗中使自己變得 不起眼,然後伺機襲擊獵物, 是非常狡詐的寶可夢。",
'zh-cn': "會潛藏在黑暗中使自己變得 不起眼,然後伺機襲擊獵物, 是非常狡詐的寶可夢。",
ja: "自分が 目立たないよう 暗闇に まぎれて 獲物に 襲いかかる とても ずる賢い ポケモン。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "抓",
'zh-cn': "抓",
ja: "ひっかく"
},
damage: 20,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "暗算",
'zh-cn': "暗算",
ja: "ねくびをかく"
},
effect: {
'zh-tw': "對手的1隻備戰寶可夢受到那隻寶可夢身上放置的傷害指示物的數量×20點傷害。[在備戰區不計算弱點・抵抗力。]",
'zh-cn': "對手的1隻備戰寶可夢受到那隻寶可夢身上放置的傷害指示物的數量×20點傷害。[在備戰區不計算弱點・抵抗力。]",
ja: "相手のベンチポケモン1匹に、そのポケモンにのっているダメカンの数×20ダメージ。ベンチは弱点・抵抗力を計算しない。"
},
cost: ["Darkness", "Darkness"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Rare",
dexId: [215]
}
export default card