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:
49
data-asia/S/S6a/041.ts
Normal file
49
data-asia/S/S6a/041.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S6a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "仙子伊布VMAX"
|
||||
},
|
||||
|
||||
illustrator: "Ryota Murayama",
|
||||
category: "Pokemon",
|
||||
hp: 310,
|
||||
types: ["Psychic"],
|
||||
stage: "VMAX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "貴重之觸"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的手牌選擇1張能量卡,附於自己的備戰寶可夢身上。然後,將那隻寶可夢恢復「120」HP。"
|
||||
},
|
||||
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "極巨和諧"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加自己的備戰寶可夢的屬性種類的數量×30點傷害。"
|
||||
},
|
||||
|
||||
damage: "70+",
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user