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

55 lines
914 B
TypeScript
Raw Permalink 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "帕底亞 肯泰羅"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "噴出的鼻息溫度很高,因此被命名為火熾種。 3根尾巴總是束在一起。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "憤怒之角"
},
effect: {
'zh-tw': "增加這隻寶可夢身上放置的傷害指示物的數量×10點傷害。"
},
damage: "20+",
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "火焰衝刺"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 120,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card