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

65 lines
2.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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "フラージェス",
'zh-tw': "花潔夫人",
th: "ฟลาเจส"
},
illustrator: "Ligton",
rarity: "Uncommon",
category: "Pokemon",
dexId: [671],
hp: 140,
types: ["Psychic"],
description: {
ja: "フラージェスの 作った 花園は 心と 体を 癒す パワーが 絶えず 降り注いでいるという。",
'zh-tw': "據說花潔夫人打造的花園裡 會源源不絕地傾注著 能夠治癒身心的力量。",
th: "ว่ากันว่าสวนดอกไม้ที่ฟลาเจสสร้างขึ้นมีพลังเยียวยาร่างกายและจิตใจแผ่ออกมาอย่างไม่มีวันหมด"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "みわくのいざない",
'zh-tw': "媚惑引誘",
th: "เย้ายวนล่อหลอก"
},
effect: {
ja: "自分の番に1回使える。コインを1回投げオモテなら、相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。その後、新しく出てきたポケモンをこんらんにする。",
'zh-tw': "在自己的回合時可使用1次。擲1次硬幣若為正面則選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。然後將新上場的寶可夢【混亂】。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้ หลังจากนั้น ทำให้โปเกมอนที่เพิ่งออกมาใหม่เป็นสภาวะ[สับสน]"
}
}],
attacks: [{
cost: ["Psychic", "Colorless"],
name: {
ja: "マジカルショット",
'zh-tw': "魔法射擊",
th: "เมจิคัลช็อต"
},
damage: 120
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card