mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
49
data-asia/S/SLL/002.ts
Normal file
49
data-asia/S/SLL/002.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SLL"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "瑪沙那",
|
||||
ja: "アサナン"
|
||||
},
|
||||
|
||||
illustrator: "0313",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "1天只吃1個樹果。藉由忍耐飢餓來來磨練自己的心。",
|
||||
ja: "1日 1個だけ 木の実を 食べる。 空腹に 耐えることで 心が 研ぎ澄まされていく。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "真氣突刺",
|
||||
ja: "きあいづき"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。",
|
||||
ja: "コインを1回投げウラなら、このワザは失敗。"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fighting"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
dexId: [307]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user