1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +00:00

feat: Add TCG Pocket promos A (#587)

This commit is contained in:
2024-11-26 00:44:07 +01:00
committed by GitHub
parent 89e0b8d367
commit 8610bd60fe
24 changed files with 662 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Greninja"
},
illustrator: "Sanosuke Sakuma",
rarity: "Three Diamond",
category: "Pokemon",
types: ["Water"],
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
en: "Water Shuriken"
},
effect: {
en: "Once during your turn, you may do 20 damage to 1 of your opponent's Pokémon."
}
}],
attacks: [{
name: {
en: "Mist Slash"
},
cost: ["Water", "Colorless"],
damage: 60
}]
}
export default card