1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +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

59
data-asia/S/S11a/035.ts Normal file
View File

@@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "超夢"
},
illustrator: "Atsushi Furusawa",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "藉著重組夢幻的基因而誕生。據說有著所有寶可夢中最殘暴的心。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "精神充氣"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張【超】能量卡附於自己的1隻寶可夢身上。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "界限破壞"
},
effect: {
'zh-tw': "若對手剩餘獎賞卡的張數為3張以下則增加90點傷害。"
},
damage: "90+",
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card