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

63 lines
2.2 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ナミイルカ",
'zh-tw': "波普海豚",
th: "นามิอิรุกะ"
},
illustrator: "kodama",
rarity: "Common",
category: "Pokemon",
dexId: [963],
hp: 50,
types: ["Water"],
description: {
ja: "尾びれの 水のリングで 仲間と 遊ぶのが 好き。 超音波で 生き物の 気持ちを 察知する。",
'zh-tw': "喜歡用尾鰭的水環和夥伴一起玩耍。能透過超音波察覺生物的心情。",
th: "ชอบเล่นสนุกกับพวกพ้องด้วยวงแหวนน้ำที่ครีบหาง ตรวจจับความรู้สึกของสิ่งมีชีวิตด้วยคลื่นความถี่สูง"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "ゆうきのしんか",
'zh-tw': "勇氣進化",
th: "วิวัฒนาการแห่งความกล้า"
},
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。その後、このポケモンから進化するカードを、自分の山札から1枚選び、このポケモンにのせて進化させる。そして山札を切る。",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。然後從自己的牌庫選擇1張從這隻寶可夢進化而來的卡放置於這隻寶可夢身上完成進化。並且重洗牌庫。",
th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์ หลังจากนั้น เลือกการ์ดที่จะวิวัฒนาการจากโปเกมอนนี้ 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนโปเกมอนนี้เพื่อวิวัฒนาการ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Water"],
name: {
ja: "ひれカッター",
'zh-tw': "鰭快刀",
th: "ครีบใบมีด"
},
damage: 10
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card