mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
56 lines
1001 B
TypeScript
56 lines
1001 B
TypeScript
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 |