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

51
data-asia/S/S11/059.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "頓甲"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
description: {
'zh-tw': "牙齒越大越長,在族群裡的地位就越高。 牙齒的生長需要很長的時間。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "超頻旋轉"
},
effect: {
'zh-tw': "在這個回合,若進化成這隻寶可夢,則這個招式失敗。"
},
damage: 110,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "巨大之牙"
},
damage: 170,
cost: ["Fighting", "Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card