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

57
data-asia/S/SC2a/131.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鋼鎧鴉"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 160,
types: ["Colorless"],
description: {
'zh-tw': "在伽勒爾地區的空中所向無敵。牠那黑得發亮的鋼鐵之軀有著讓敵人畏懼的威懾力。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "飛翔計程車"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。選擇自己的1隻寶可夢「鋼鎧鴉」除外將那隻寶可夢與附加的卡全部放回手牌。"
}
}],
attacks: [{
name: {
'zh-tw': "爆破之風"
},
damage: 120,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card