mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
65
data-asia/SV/SV5a/038.ts
Normal file
65
data-asia/SV/SV5a/038.ts
Normal file
@ -0,0 +1,65 @@
|
||||
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
|
Reference in New Issue
Block a user