1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

39
data-asia/S/S6H/044.ts Normal file
View 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