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

59
data-asia/S/SDM/005.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SDM"
const card: Card = {
set: Set,
name: {
'zh-tw': "象徵鳥"
},
illustrator: "Sumiyoshi Kizuki",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "利用精神力量在空中飛翔,被稱為古代都市的守護神。 也有人認為牠是守護神的使者。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "三重裝填"
},
effect: {
'zh-tw': "擲3次硬幣從自己的棄牌區選擇最多與正面出現的次數相同數量的基本能量卡以任意方式附於備戰寶可夢身上。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "精神強念"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。"
},
damage: "10+",
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card