1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

49 lines
657 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "アチゲータ"
},
illustrator: "kantaro",
category: "Pokemon",
dexId: [910],
hp: 110,
types: ["Fire"],
description: {
ja: "炎エネルギーと 有り余る 生命力が 交じり 頭上に タマゴ型の 火玉が 現れた。"
},
stage: "Stage1",
attacks: [{
cost: ["Fire"],
name: {
ja: "ひをはく"
},
damage: 30
}, {
cost: ["Fire", "Fire"],
name: {
ja: "ハイパーボイス"
},
damage: 70
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3
}
export default card