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

49
data-asia/S/S6a/041.ts Normal file
View 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