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

52 lines
1.3 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 "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "ニューラ",
'zh-tw': "狃拉",
th: "นิวลา",
id: "Sneasel"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
dexId: [215],
hp: 70,
types: ["Darkness"],
description: {
ja: "自分が 目立たないよう 暗闇に まぎれて 獲物に 襲いかかる とても ずる賢い ポケモン。",
'zh-tw': "會潛藏在黑暗中使自己變得不起眼,然後伺機襲擊獵物, 是非常狡詐的寶可夢。",
th: "ล่าเหยื่อโดยพรางตัวในความมืดเพื่อไม่ให้เห็นตัวได้โดยง่าย เป็นโปเกมอนที่เจ้าเล่ห์มาก",
id: "Sneasel adalah Pokémon yang sangat licik. Agar tidak terlihat mencolok, Pokémon ini bersembunyi di dalam kegelapan, kemudian menyerang mangsanya."
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ツメをたてる",
'zh-tw': "豎爪",
th: "กางกรงเล็บ",
id: "Memasang Cakar"
},
damage: 20
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card