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

51
data-asia/S/SC1a/065.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "飛腿郎"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "擁有卓越的平衡感。無論處於什麼姿勢都可以連續施展踢擊的厲害角色。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "下盤踢"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "聯合攻擊"
},
effect: {
'zh-tw': "若自己的備戰區有「快拳郎」則增加80點傷害。"
},
damage: "80+",
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card