1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

73 lines
1.0 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Nosepass",
fr: "Tarinor",
},
illustrator: "Anesaki Dynamic",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
299,
],
hp: 80,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Draw Toward",
fr: "Attirance",
},
effect: {
en: "Switch 1 of your opponent's Benched Pokémon with their Active Pokémon.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Zap Cannon",
fr: "Élecanon",
},
effect: {
en: "This Pokémon can't use Zap Cannon during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Élecanon pendant votre prochain tour.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card