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

59
data-asia/S/S6a/044.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "瑪夏多"
},
illustrator: "Yuya Oka",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
'zh-tw': "會潛進人或寶可夢的影子裡。能理解潛入對象的心情,並複製對方的能力。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "迅速搜尋"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張「連擊」卡在給對手看過後加入手牌。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "暗影閃爍"
},
effect: {
'zh-tw': "在下個自己的回合受到這個招式的寶可夢【氣絕】時多獲得1張獎賞卡。"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card