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:
56
data-asia/SV/SV3s/087.ts
Normal file
56
data-asia/SV/SV3s/087.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Stunfisk"
|
||||
},
|
||||
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
id: "Saat Stunfisk melepaskan listrik kuat dari pola berwarna kuning di tubuhnya, entah kenapa Pokémon ini tersenyum kecil."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
id: "Custom Trap"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Jika Pokémon ini mengenakan Pokémon Tool saat Pokémon ini ada di Arena Bertarung dan menerima kerusakan akibat serangan dari Pokémon lawan, letakkan 5 Token Kerusakan pada Pokémon yang telah menggunakan serangan."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Gelegar Tanah"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur."
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fighting"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user