1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/SV/SV5s/174.ts Normal file
View File

@ -0,0 +1,51 @@
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