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

68 lines
2.1 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ニドリーナ",
'zh-tw': "尼多娜",
th: "นิโดรินา",
id: "Nidorina"
},
illustrator: "Teeziro",
rarity: "Uncommon",
category: "Pokemon",
dexId: [30],
hp: 90,
types: ["Darkness"],
description: {
ja: "群れに 危険が せまると 仲間で 結束して 超音波の 大合唱を おみまいするぞ。",
'zh-tw': "有危險逼近群體時,會與夥伴們團結一致地 用超音波的大合唱來攻擊。",
th: "หากมีภัยอันตรายเข้าใกล้ฝูงจะรวมกลุ่มกับพวกส่งเสียงร้องประสานความถี่สูงเข้าใส่เลยนะ",
id: "Ketika bahaya mendekati gerombolannya, Nidorina membuat kesatuan dengan sesamanya untuk menyerang musuh menggunakan paduan suara gelombang ultrasonik."
},
stage: "Stage1",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ファミリーコール",
'zh-tw': "家族呼喚",
th: "แฟมิลีคอล",
id: "Family Call"
},
effect: {
ja: "自分の山札からポケモンを3枚まで選び、相手に見せて、手札に加える。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇最多3張寶可夢卡在給對手看過後加入手牌。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอนได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด",
id: "Pilih paling banyak 3 lembar Pokémon dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
}
}, {
cost: ["Darkness", "Colorless"],
name: {
ja: "するどいキバ",
'zh-tw': "銳利之牙",
th: "เขี้ยวคม",
id: "Taring Tajam"
},
damage: 50
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card