mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 03:50:46 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
60
data-asia/SV/SV3s/121.ts
Normal file
60
data-asia/SV/SV3s/121.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Probopass"
|
||||
},
|
||||
|
||||
illustrator: "takuyoa",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
id: "Probopass menggunakan 3 unit kecil untuk menangkap mangsa dan bertarung dengan musuh. Tubuh utama umumnya hanya memberi perintah saja."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Triple Nose"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 40 untuk tiap lemparan dengan hasil sisi depan."
|
||||
},
|
||||
|
||||
damage: "40×",
|
||||
cost: ["Metal", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Iron Buster"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
cost: ["Metal", "Metal", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user