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

67
data-asia/SV/SV3/051.ts Normal file
View File

@ -0,0 +1,67 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ビークインex",
'zh-tw': "蜂女王ex",
th: "บีควินex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 270,
types: ["Psychic"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Grass"],
name: {
ja: "かいふくフェロモン",
'zh-tw': "回復費洛蒙",
th: "ฟีโรโมนฟื้นพลัง"
},
effect: {
ja: "自分のポケモン1匹のHPを「60」回復する。",
'zh-tw': "將自己的1隻寶可夢恢復「60」HP。",
th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเรา 1 ตัว [60]"
}
}, {
cost: ["Grass", "Grass", "Grass"],
name: {
ja: "ファントムクイーン",
'zh-tw': "幻影皇后",
th: "แฟนธอมควีน"
},
damage: 200,
effect: {
ja: "ダメカンがのっている相手のベンチポケモン全員に、それぞれダメカンを3個のせる。",
'zh-tw': "在對手的身上放置有傷害指示物的所有備戰寶可夢身上各放置3個傷害指示物。",
th: "วางตัวนับแดเมจบนโปเกมอนบนเบนช์ฝ่ายตรงข้ามทุกตัวที่มีตัวนับแดเมจวางอยู่ ตัวละ 3 ตัว"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card