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:
39
data-asia/S/S6H/044.ts
Normal file
39
data-asia/S/S6H/044.ts
Normal file
@ -0,0 +1,39 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S6H"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "沙螺蟒VMAX"
|
||||
},
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 320,
|
||||
types: ["Fighting"],
|
||||
stage: "VMAX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "超極巨旋風氣旋"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "選擇自己的場上寶可夢身上附加的任意數量的能量,以任意方式改附於自己的寶可夢身上。"
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
cost: ["Fighting", "Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user