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

50
data-asia/SV/SV3s/218.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Garchomp ex"
},
illustrator: "Oswaldo KATO",
category: "Pokemon",
hp: 320,
types: ["Water"],
stage: "Stage2",
suffix: "EX",
attacks: [{
name: {
id: "Hydro Lander"
},
effect: {
id: "Pilih paling banyak 3 lembar Energi Dasar {Petarung} dari Trash sendiri, lalu kenakan sesukanya pada Pokémon Cadangan."
},
damage: 160,
cost: ["Fighting"]
}, {
name: {
id: "Sonic Dive"
},
effect: {
id: "Buang 2 Energi yang dikenakan pada Pokémon ini ke Trash, serangan ini memberikan kerusakan sejumlah 120 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 0,
regulationMark: "G"
}
export default card