1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 18:27:51 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

57 lines
842 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Greninja"
},
illustrator: "Sanosuke Sakuma",
rarity: "None",
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
}],
hp: 120,
evolveFrom: {
en: "Frogadier"
},
description: {
en: "It creates throwing stars out of compressed water. When it spins them and throws them at high speed, these stars can split metal in two."
},
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card