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

52
data-asia/S/SC1a/162.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "列陣兵V"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 160,
types: ["Fighting"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "鐵壁之陣"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的場上的,所有名稱中有「列陣兵」的寶可夢,受到對手的寶可夢招式的傷害「-20」點。"
}
}],
attacks: [{
name: {
'zh-tw': "終極衝擊"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 210,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card