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

62 lines
1.6 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: "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