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

57 lines
907 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "パルデア ケンタロス"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
dexId: [128],
hp: 130,
types: ["Fighting"],
description: {
ja: "ぶ厚く 力強い 筋肉と 気性の 荒さが 特徴。 コンバット種と 呼ばれる。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "いかりのつの"
},
damage: "20",
effect: {
ja: "このポケモンにのっているダメカンの数×10ダメージ追加。"
}
}, {
cost: ["Fighting", "Fighting", "Colorless"],
name: {
ja: "コンバットタックル"
},
damage: 130,
effect: {
ja: "このポケモンにも30ダメージ。"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2
}
export default card