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

51
data-asia/S/S5R/029.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "磨牙彩皮魚",
th: "ฮากิกิชิริ"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "厚實的皮膚連好壞星的針也無法穿透。會用結實的牙齒把針咬碎之後吃下去。",
th: "มีหนังหนาขนาดที่หนามของฮิโดอิเดะก็แทงไม่เข้า จะกัดหนามกินด้วยฟันที่แข็งแรง"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬住",
th: "กัดติด"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "衝浪",
th: "โต้คลื่น"
},
damage: 110,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card