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

55
data-asia/S/SI/246.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨石丁"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "每年會有一天,牠們會在 特定的時間突然出現, 聚集在一起排成一個圈。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "大地鼓動"
},
effect: {
'zh-tw': "若場上有競技場卡則增加30點傷害。"
},
damage: "30+",
cost: ["Fighting", "Colorless"]
}, {
name: {
'zh-tw': "兆幅鐵錘"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「兆幅鐵錘」。"
},
damage: 120,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card