1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

71 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Lost Thunder'
const card: Card = {
name: {
en: "Vespiquen",
fr: "Apireine",
es: "Vespiquen",
it: "Vespiquen",
pt: "Vespiquen",
de: "Honweisel"
},
illustrator: "chibi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
416,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Combee",
fr: "Apitrini",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Commanding Queen",
fr: "Reine Imposante",
es: "Reina al Mando",
it: "Regina Condottiera",
pt: "Rainha Comandante",
de: "Herrschende Königin"
},
effect: {
en: "If you have 4 or fewer Grass Pokémon on your Bench, this attack does nothing.",
fr: "Si vous avez 4 Pokémon Grass ou moins sur votre Banc, cette attaque ne fait rien.",
es: "Si tienes 4 o menos Pokémon Grass en tu Banca, este ataque no hace nada.",
it: "Se hai quattro o meno Pokémon Grass in panchina, questo attacco non ha effetto.",
pt: "Se você tiver 4 ou menos Pokémon Grass no seu Banco, este ataque não fará nada.",
de: "Wenn du 4 oder weniger Grass-Pokémon auf deiner Bank hast, hat diese Attacke keine Auswirkungen."
},
damage: 120,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card