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

61
data-asia/S/S4a/145.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "舞天鵝"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
hp: 110,
types: ["Colorless"],
description: {
'zh-tw': "舞天鵝們會隨著黎明起舞。在正中間跳舞的就是群體的首領。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "天空雜耍"
},
effect: {
'zh-tw': "在這個回合,若從自己的手牌使出了「養鳥人」,則這隻寶可夢使用招式所需的能量全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "羽毛斬"
},
effect: {
'zh-tw': "若希望選擇1張自己的手牌將其丟棄。這個情況下增加70點傷害。"
},
damage: "70+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "D"
}
export default card