1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

73 lines
1.3 KiB
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 '../XY Black Star Promos'
const card: Card = {
name: {
en: "Ash Greninja EX",
fr: "Sachanobi EX",
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
658,
],
hp: 170,
types: [
"Water",
],
suffix: "EX",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Dancing Shuriken",
fr: "Shuriken Dansant",
},
effect: {
en: "Flip 3 coins. This attack does 20 damage times the number of heads to 1 of your opponents Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face à lun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Ninja Blade",
fr: "Lame Ninja",
},
effect: {
en: "This Pokémon cant use Ninja Blade during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Lame Ninja pendant votre prochain tour.",
},
damage: 130,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card