1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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

48
data-asia/S/S5a/048.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "飯匙蛇",
th: "ฮาบูเนค"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 110,
types: ["Darkness"],
description: {
'zh-tw': "總是用岩石打磨尾巴上的刀刃,所以刀刃非常鋒利。和貓鼬斬是死對頭。",
th: "ลับดาบบนหางด้วยหินผาอยู่ตลอดเวลาจึงคมกริบ เป็นคู่บาดหมางกับแซงกูส"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "怪力尾",
th: "หางทรงพลัง"
},
effect: {
'zh-tw': "在這個回合若從手牌使出了「一擊」支援者則增加90點傷害。",
th: "ในเทิร์นนี้ ถ้านำการ์ดซัพพอร์ต จากบนมือออกมาใช้แล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 90"
},
damage: "90+",
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card