1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

53 lines
881 B
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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "狃拉",
ja: "ニューラ"
},
illustrator: "yuu",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "手指中藏有鋒利的爪子。會突然伸出利爪, 讓襲擊自己的對手心生怯意。",
ja: "鋭いツメを 指の 中に 隠している。 いきなり 伸ばして 襲ってきた 相手を ひるませる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "抓",
ja: "ひっかく"
},
damage: 10,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "劈開",
ja: "きりさく"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [215]
}
export default card