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

55
data-asia/SV/SV3/058.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ウソハチ",
'zh-tw': "盆才怪",
th: "อุโซฮาจิ"
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
dexId: [438],
hp: 30,
types: ["Fighting"],
description: {
ja: "体内の 余計な 水分を 目 から 出して 調節する。 泣いているように 見えるだけ。",
'zh-tw': "雖然看似在哭泣,但那不過是牠在把多餘的水從眼睛排出,以調節體內的水分罷了。",
th: "ขับน้ำส่วนเกินในร่างกายออกทางตาเพื่อปรับสมดุล เลยดูเหมือนร้องไห้อยู่"
},
stage: "Basic",
attacks: [{
name: {
ja: "ビィビィなく",
'zh-tw': "嚶嚶鳴叫",
th: "ร้องไห้โฮ ๆ"
},
damage: 10,
effect: {
ja: "相手のバトルポケモンをこんらんにする。",
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 0,
regulationMark: "G"
}
export default card