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

53
data-asia/SV/SV4M/013.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ヒンバス",
'zh-tw': "醜醜魚",
th: "ฮินบาส"
},
illustrator: "Tetsu Kayama",
rarity: "Common",
category: "Pokemon",
dexId: [349],
hp: 30,
types: ["Water"],
description: {
ja: "みすぼらしく 醜い ポケモンだが しぶとい 生命力を もち わずかな 水だけでも 生き延びる。",
'zh-tw': "雖然看起來弱小又醜陋,但擁有頑強的生命力,只要少量的水就能存活。",
th: "เป็นโปเกมอนที่ดูมอมแมม น่าเกลียดแต่ทนทรหด มีพลังในการดำรงชีวิตอยู่รอดได้แม้จะมีน้ำเพียงเล็กน้อย"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "ドローアップ",
'zh-tw': "抽上",
th: "ดรอว์อัป"
},
effect: {
ja: "自分の山札からエネルギーを1枚選び、相手に見せて、手札に加える。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張能量卡在給對手看過後加入手牌。並且重洗牌庫。",
th: "เลือกการ์ดพลังงาน 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card