mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
46
data-asia/S/S10a/057.ts
Normal file
46
data-asia/S/S10a/057.ts
Normal file
@ -0,0 +1,46 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "洗翠 黏美龍VSTAR"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 270,
|
||||
types: ["Dragon"],
|
||||
stage: "VMAX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "潤濕星星"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合時可使用。將這隻寶可夢的HP全部恢復。[對戰中,己方只可使用1次【VSTAR】力量。]"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "鐵之回轉"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-80」點。"
|
||||
},
|
||||
|
||||
damage: 200,
|
||||
cost: ["Water", "Metal", "Colorless"]
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user