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

62
data-asia/SV/SV4a/052.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "セゴール",
'zh-tw': "凍脊龍",
th: "เซโกล",
id: "Arctibax"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
dexId: [997],
hp: 90,
types: ["Water"],
description: {
ja: "まわりの 空気を 凍らせて 氷のマスクで 顔を 守り 背びれを 氷の剣に 変える。",
'zh-tw': "凍結周圍的空氣,以冰之面罩保護臉部, 並將背鰭變成冰劍。",
th: "ทำให้อากาศโดยรอบเย็นยะเยือก ปกป้องใบหน้าด้วยหน้ากากน้ำแข็งและเปลี่ยนครีบหลังเป็นดาบน้ำแข็ง",
id: "Arctibax membekukan udara di sekitarnya, menggunakan masker es untuk melindungi wajahnya, dan mengubah sirip punggungnya menjadi pedang es."
},
stage: "Stage1",
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "するどいひれ",
'zh-tw': "銳利鰭",
th: "ครีบแหลมคม",
id: "Sirip Tajam"
},
damage: 40
}, {
cost: ["Water", "Water", "Colorless"],
name: {
ja: "フロストスマッシュ",
'zh-tw': "冰霜粉碎",
th: "ฟรอสต์สแมช",
id: "Frost Smash"
},
damage: 80
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card