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

51 lines
1009 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: "Ogerpon Topeng Sumur ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 210,
types: ["Water"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
id: "Menangis Sesenggukan"
},
effect: {
id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur."
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
id: "Pompa Arus Deras"
},
effect: {
id: "Pemain dapat memilih 3 Energi yang dikenakan pada Pokémon ini, lalu mengocoknya kembali ke Deck. Jika dilakukan, serangan ini juga memberikan kerusakan sejumlah 120 kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
damage: 100,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card