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

50 lines
960 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: "Greninja ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 310,
types: ["Fighting"],
stage: "Stage2",
suffix: "EX",
attacks: [{
name: {
id: "Pisau Shinobi"
},
effect: {
id: "Pemain dapat memilih 1 kartu sesukanya dari Deck sendiri, lalu menambahkannya ke Kartu Pegangan. Kemudian, kocok Deck."
},
damage: 170,
cost: ["Water"]
}, {
name: {
id: "Pukulan Beruntun Mengganda"
},
effect: {
id: "Buang 2 Energi yang dikenakan pada Pokémon ini ke Trash, serangan ini memberikan kerusakan masing-masing sejumlah 120 kepada 2 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card