1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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/S11a/055.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鳳王V"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 230,
types: ["Colorless"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "復活火焰"
},
effect: {
'zh-tw': "若這張卡在棄牌區則在自己的回合時可使用1次若使用則自己的回合結束。將這張卡放置於備戰區。然後從自己的棄牌區選擇最多4張基本能量卡附於這隻寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "彩虹烈焰"
},
effect: {
'zh-tw': "增加這隻寶可夢身上附加的基本能量的屬性種類的數量×30點傷害。"
},
damage: "100+",
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card