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/S/S5a/031.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "提布莉姆",
th: "เทบริม"
},
illustrator: "miki kudo",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
'zh-tw': "會用頭上的辮子攻擊對手,讓對方安靜下來。破壞力強到能一擊KO職業拳擊手。",
th: "ชกฝ่ายตรงข้ามให้สงบลงด้วยพวงผมบนหัว มีพลังถึงขนาดทำให้นักมวยมืออาชีพน็อกเอาท์ได้ในหมัดเดียว"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "螺旋吸取",
th: "สไปรัลเดรน"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]"
},
damage: 30,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card