mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 03:50:46 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
38
data-asia/S/SCD/068.ts
Normal file
38
data-asia/S/SCD/068.ts
Normal file
@ -0,0 +1,38 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SCD"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "花蓓蓓"
|
||||
},
|
||||
|
||||
illustrator: "OKACHEKE",
|
||||
category: "Pokemon",
|
||||
hp: 40,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "目不轉睛"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
|
||||
},
|
||||
|
||||
cost: ["Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user