mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
34
data-asia/S/SI/320.ts
Normal file
34
data-asia/S/SI/320.ts
Normal file
@ -0,0 +1,34 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SI"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "酋雷姆"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Dragon"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "極限冰凍"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將自己的場上寶可夢身上附加的任意數量的【水】能量卡丟棄,造成其張數×60點傷害。"
|
||||
},
|
||||
|
||||
damage: "60×",
|
||||
cost: ["Water", "Water", "Metal"]
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user