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

55
data-asia/S/SC1a/082.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "龜足巨鎧"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "7隻龜腳腳組成了1隻龜足巨鎧的身體。由頭部對手腳發號施令。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "岩石投擲"
},
effect: {
'zh-tw': "這個招式的傷害不計算抵抗力。"
},
damage: 50,
cost: ["Fighting", "Colorless"]
}, {
name: {
'zh-tw': "手部壓制"
},
effect: {
'zh-tw': "若自己手牌的張數比對手手牌的張數多則增加80點傷害。"
},
damage: "80+",
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card