1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

53
data-asia/SV/SV2D/072.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "ヘラクロス"
},
illustrator: "Kurata So",
category: "Pokemon",
dexId: [214],
hp: 130,
types: ["Grass"],
description: {
ja: "甘いミツが 大好きで 独り占め するため 自慢のツノを 使って 相手を ぶん投げる。"
},
stage: "Basic",
attacks: [{
cost: ["Grass", "Grass"],
name: {
ja: "たいあたり"
},
damage: 50
}, {
cost: ["Grass", "Grass", "Grass"],
name: {
ja: "スマッシュホーン"
},
damage: 110,
effect: {
ja: "このワザのダメージは抵抗力を計算しない。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3
}
export default card