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

51
data-asia/SV/SVD/002.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "赫拉克羅斯"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 130,
types: ["Grass"],
description: {
'zh-tw': "對甜甜蜜愛不釋手,為了全都佔為己有, 會用引以為傲的角扔飛對手。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "撞擊"
},
damage: 50,
cost: ["Grass", "Grass"]
}, {
name: {
'zh-tw': "粉碎角擊"
},
effect: {
'zh-tw': "這個招式的傷害不計算抵抗力。"
},
damage: 110,
cost: ["Grass", "Grass", "Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card