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

63
data-asia/S/S9a/003.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "霸王花",
ja: "ラフレシア"
},
illustrator: "Jiro Sasumo",
category: "Pokemon",
hp: 150,
types: ["Grass"],
description: {
'zh-tw': "身上那些全世界最大的花瓣會隨著牠的每個步伐搖動, 散播大量的毒花粉。",
ja: "世界一 大きな 花びらは 歩くたびに 揺れて 大量の 毒花粉を ばらまいてしまう。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "超級吸取",
ja: "メガドレイン"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。",
ja: "このポケモンのHPを「30」回復する。"
},
damage: 50,
cost: ["Grass", "Colorless"]
}, {
name: {
'zh-tw': "過敏性風暴",
ja: "アレルギーストーム"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合對手無法從手牌使出支援者卡。若為反面則在下個對手的回合對手無法從手牌使出物品卡。",
ja: "コインを1回投げオモテなら、次の相手の番、相手は手札からサポートを出して使えない。ウラなら、次の相手の番、相手は手札からグッズを出して使えない。"
},
damage: 90,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Rare",
dexId: [45]
}
export default card