mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
43
data-asia/S/SC1D/014.ts
Normal file
43
data-asia/S/SC1D/014.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SC1D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "索偵蟲"
|
||||
},
|
||||
|
||||
illustrator: "Mina Nakai",
|
||||
category: "Pokemon",
|
||||
hp: 40,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "總是孜孜不倦地收集情報,所以頭腦相當地聰明,但是力量方面就差了一些。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "呼朋引伴"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user