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

69 lines
2.5 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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "イーユイ",
'zh-tw': "古玉魚",
th: "อวี้อวี๋"
},
illustrator: "Oswaldo KATO",
rarity: "Rare",
category: "Pokemon",
dexId: [1004],
hp: 110,
types: ["Fire"],
description: {
ja: "3000度の 炎を 操る。 岩や 砂利を 溶かして 作った マグマの海を ゆうゆうと 泳ぐ。",
'zh-tw': "能操控3000度的火焰。會熔化岩石和沙礫做成熔岩海, 並在裡面悠閒自在地游泳。",
th: "ควบคุมเปลวไฟที่ร้อนกว่า 3000 องศาเซลเซียส แหวกว่ายในทะเลแม็กมาที่มันสร้างจากการหลอมละลายหินและกรวดอย่างสบาย ๆ"
},
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
ja: "フレアブリング",
'zh-tw': "閃焰到來",
th: "เบิกเปลวเพลิง"
},
effect: {
ja: "自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモン1匹につける。",
'zh-tw': "從自己的棄牌區選擇最多2張「基本【火】能量」卡附於自己的1隻寶可夢身上。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[ไฟ]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา 1 ตัว"
}
}, {
cost: ["Fire", "Fire"],
name: {
ja: "ねたみのごうか",
'zh-tw': "嫉妒業火",
th: "ไฟนรกแห่งความอิจฉา"
},
damage: "50+",
effect: {
ja: "前の相手の番に、ワザのダメージで、自分のポケモンがきぜつしていたなら、90ダメージ追加。",
'zh-tw': "在上個對手的回合若自己的寶可夢因招式的傷害而【昏厥】了則增加90點傷害。",
th: "ในเทิร์นก่อนของฝ่ายตรงข้าม ถ้าโปเกมอนฝ่ายเรา[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้ การโจมตีนี้จะเพิ่มแดเมจอีก 90"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card