1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09: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/SV/SV3a/078.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "フーパex",
'zh-tw': "胡帕ex",
th: "ฮูปาex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 220,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Darkness", "Darkness"],
name: {
ja: "エナジークラッシュ",
'zh-tw': "能量粉碎",
th: "เอนเนอร์จี้ครัช"
},
damage: "50×",
effect: {
ja: "相手のポケモン全員についているエネルギーの数×50ダメージ。",
'zh-tw': "造成對手的所有寶可夢身上附加的能量的數量×50點傷害。",
th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนฝ่ายตรงข้ามทุกตัว x50"
}
}, {
cost: ["Darkness", "Darkness", "Darkness"],
name: {
ja: "バンデットフィスト",
'zh-tw': "狂徒拳",
th: "หมัดจอมโจร"
},
damage: 200,
effect: {
ja: "次の自分の番、このポケモンは「バンデットフィスト」が使えない。",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「狂徒拳」。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [หมัดจอมโจร] ไม่ได้"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card