1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

62 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ゲッコウガex",
'zh-tw': "甲賀忍蛙ex",
th: "เก็คโคกะex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 310,
types: ["Fighting"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Water"],
name: {
ja: "しのびのやいば",
'zh-tw': "忍之利刃",
th: "คมดาบนินจา"
},
damage: 170,
effect: {
ja: "のぞむなら、自分の山札から好きなカードを1枚選び、手札に加える。そして山札を切る。",
'zh-tw': "若希望從自己的牌庫任意選擇1張卡加入手牌。並且重洗牌庫。",
th: "หากต้องการ เลือกการ์ดที่ชอบ 1 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "ぶんしんれんだ",
'zh-tw': "分身連打",
th: "แยกร่างกระหน่ำโจมตี"
},
effect: {
ja: "このポケモンについているエネルギーを2個トラッシュし、相手のポケモン2匹に、それぞれ120ダメージ。ベンチは弱点・抵抗力を計算しない。",
'zh-tw': "將2個這隻寶可夢身上附加的能量丟棄對手的2隻寶可夢各受到120點傷害。[在備戰區不計算弱點・抵抗力。]",
th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูกที่ตำแหน่งทิ้งการ์ด โปเกมอนฝ่ายตรงข้าม 2 ตัว จะได้รับแดเมจตัวละ 120 {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card