1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

51 lines
862 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Probopass"
},
illustrator: "OKUBO",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
description: {
id: "Dikarenakan ia mengeluarkan daya magnet yang kuat, barang elektronik yang ada di dekatnya menjadi tidak bisa digunakan."
},
stage: "Stage1",
attacks: [{
name: {
id: "Assault Laser"
},
effect: {
id: "Jika Pokémon Bertarung lawan mengenakan Pokémon Tool, kerusakan yang diberikan bertambah sejumlah 80."
},
damage: "80+",
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
id: "Land Crush"
},
damage: 120,
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card