1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

feat(asian): Updated SV6 and added SV6a & SV6s (#502)

This commit is contained in:
2024-10-10 00:44:36 +02:00
parent bfe885b508
commit 5e4ba51064
365 changed files with 13098 additions and 481 deletions

50
data-asia/SV/SV6s/106.ts Normal file
View File

@ -0,0 +1,50 @@
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