1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-19 22:59:55 +00:00
2025-02-07 00:51:20 +01:00

56 lines
851 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. <br />When it spins them and throws them at high speed, <br />these stars can split metal in two."
},
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card