1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

67
data-asia/S/S9a/031.ts Normal file
View File

@ -0,0 +1,67 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "夢妖魔",
ja: "ムウマージ"
},
illustrator: "Ligton",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "會喃喃唸誦詛咒的話語, 使對手激烈頭痛,或是看見 恐怖的幻覺,藉此折磨對手。",
ja: "呪いの 言葉を つぶやいて ひどい 頭痛や 恐ろしい 幻を 見せて 苦しめる。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "不祥言靈",
ja: "ふきつなことだま"
},
effect: {
'zh-tw': "查看對手的手牌。若對手的手牌有4張以上則選擇卡直到其張數變為3張為止將所選的卡放回對手的牌庫並重洗。",
ja: "相手の手札を見る。相手の手札が4枚以上あるなら、その枚数が3枚になるまでカードを選び、選んだカードを相手の山札にもどして切る。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "幻象光線",
ja: "サイケこうせん"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
ja: "相手のバトルポケモンをこんらんにする。"
},
damage: 50,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [429]
}
export default card