1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

88 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 '../Undaunted'
const card: Card = {
name: {
en: "Vespiquen",
fr: "Apireine",
},
illustrator: "Naoyo Kimura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
416,
],
hp: 100,
types: [
"Grass",
],
evolveFrom: {
en: "Combee",
fr: "Apitrini",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Defense Sign",
fr: "Signal de défense",
},
effect: {
en: "Prevent all damage done to your Benched Grass Pokémon by attacks.",
fr: "Prévenez tous les dégâts infligés par des attaques aux Pokémon Grass de votre Banc.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Mach Wind",
fr: "Vent frénétique",
},
effect: {
en: "During your next turn, Vespiquens Retreat Cost is 0.",
fr: "Pendant votre prochain tour, le Coût de retraite dApireine est de 0.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 3,
description: {
en: "It raises grubs in the holes in its body. It secretes pheromones to control Combee."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card