1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +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

64
data-asia/S/S12a/054.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "夢幻VMAX",
th: "มิวVMAX",
ja: "ミュウVMAX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 310,
types: ["Psychic"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "交錯匯流",
th: "ครอสฟิวชัน",
ja: "クロスフュージョン"
},
effect: {
'zh-tw': "選擇自己的備戰區的「匯流」寶可夢持有的1個招式作為這個招式使用。",
th: "เลือกท่าต่อสู้ที่โปเกมอน บนเบนช์ฝ่ายเรามี 1 ท่า ใช้เป็นท่าต่อสู้นี้ได้",
ja: "自分のベンチの「フュージョン」のポケモンが持っているワザを1つ選び、このワザとして使う。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "極巨奇跡",
th: "ไดมิราเคิล",
ja: "ダイミラクル"
},
effect: {
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。",
th: "ไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคำนวณแดเมจของท่าต่อสู้นี้",
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。"
},
damage: 130,
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 0,
regulationMark: "E"
}
export default card