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

51 lines
861 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 "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Iron Boulder ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 240,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
id: "Repulsor Axe"
},
effect: {
id: "Pada giliran lawan berikutnya, saat Pokémon ini menerima kerusakan akibat serangan, letakkan 8 Token Kerusakan pada Pokémon yang telah menggunakan serangan."
},
damage: 60,
cost: ["Fighting", "Colorless"]
}, {
name: {
id: "Power Stomp"
},
effect: {
id: "Pilih 2 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
},
damage: 200,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card