1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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

56
data-asia/S/SC1a/114.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鋼鎧鴉"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 170,
types: ["Metal"],
description: {
'zh-tw': "在伽勒爾地區的空中所向無敵。牠那黑得發亮的鋼鐵之軀有著讓敵人畏懼的威懾力。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "啄"
},
damage: 50,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "黑金之翼"
},
effect: {
'zh-tw': "若希望選擇2個這隻寶可夢身上附加的能量將其丟棄。這個情況下在下個對手的回合這隻寶可夢受到招式的傷害「-100」點。"
},
damage: 130,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card