1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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

56
data-asia/SV/SV3s/033.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Seismitoad"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 170,
types: ["Water"],
description: {
id: "Pokémon yang populer di kalangan orang lanjut usia karena vibrasi yang dihasilkan oleh tonjolan pada tubuh Seismitoad cocok untuk pijat."
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
id: "Area Getar-getar"
},
effect: {
id: "Selama Pokémon ini ada di Arena Bertarung, Energi yang dibutuhkan oleh Pokémon Bertarung lawan untuk menggunakan serangan bertambah 1 Energi {Bening}."
}
}],
attacks: [{
name: {
id: "Echo Voice"
},
effect: {
id: "Pada giliran sendiri berikutnya, kerusakan akibat Echo Voice Pokémon ini bertambah sejumlah 100."
},
damage: 120,
cost: ["Water", "Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card