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

55 lines
985 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 "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Conkeldurr"
},
illustrator: "Takeshi Nakamura",
category: "Pokemon",
hp: 180,
types: ["Fighting"],
description: {
id: "Conkeldurr menguasai teknik mengayun-ayunkan beton tanpa mengandalkan tenaga dengan memanfaatkan kekuatan sentrifugal secara mahir."
},
stage: "Stage2",
attacks: [{
name: {
id: "Mengamuk"
},
effect: {
id: "Ubah kondisi Pokémon ini menjadi Pusing."
},
damage: 80,
cost: ["Fighting"]
}, {
name: {
id: "Guts Swing"
},
effect: {
id: "Jika Pokémon ini mengalami Kondisi Khusus, serangan ini dapat digunakan meskipun Pokémon ini tidak mengenakan Energi yang dibutuhkan untuk menggunakan serangan ini."
},
damage: 250,
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card