mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
39
data-asia/S/SI/158.ts
Normal file
39
data-asia/S/SI/158.ts
Normal file
@ -0,0 +1,39 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SI"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "顫弦蠑螈"
|
||||
},
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "龐克衝擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若希望,將對手的戰鬥寶可夢【麻痺】。這個情況下,這隻寶可夢也受到70點傷害。"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user