1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

65
data-asia/SV/SV5a/038.ts Normal file
View 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