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

52 lines
866 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: "Iron Thorns ex"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 230,
types: ["Lightning"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
id: "Initialize"
},
effect: {
id: "Selama Pokémon ini ada di Arena Bertarung, Pokémon yang memiliki Peraturan (selain Pokémon Futur) di Arena kedua pemain menjadi tidak memiliki Ability."
}
}],
attacks: [{
name: {
id: "Bolt Cyclone"
},
effect: {
id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu pindahkan ke Pokémon Cadangan."
},
damage: 140,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "H"
}
export default card