1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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/S/S12/082.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "始祖小鳥",
th: "อาเคน",
ja: "アーケン"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
description: {
'zh-tw': "從化石成功復原的寶可夢。正如研究所指出的,雖然 牠不會飛,但卻擅於跳躍。",
th: "ฟื้นสภาพจากฟอสซิลได้สำเร็จ แม้จะไม่สามารถบินได้ตามที่วิจัย แต่เป็นโปเกมอนที่ถนัดด้านการกระโดด",
ja: "化石から 復元に 成功。 研究の とおり 飛べないが ジャンプは 得意な ポケモンだ。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "羽擊",
th: "ตีปีก",
ja: "はばたく"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "利爪劈擊",
th: "กรงเล็บฉีกร่าง",
ja: "ツメできりさく"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [566]
}
export default card