mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-05 00:52:08 +00:00
95 lines
2.3 KiB
TypeScript
95 lines
2.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Lost Thunder'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Ribombee",
|
||
fr: "Rubombelle",
|
||
es: "Ribombee",
|
||
it: "Ribombee",
|
||
pt: "Ribombee",
|
||
de: "Bandelby"
|
||
},
|
||
|
||
illustrator: "Hasuno",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
743,
|
||
],
|
||
|
||
hp: 60,
|
||
|
||
types: [
|
||
"Fairy",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Cutiefly",
|
||
fr: "Bombydou",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Mysterious Buzz",
|
||
fr: "Bourdonnement Mystérieux",
|
||
es: "Zumbido Misterioso",
|
||
it: "Ronzio Misterioso",
|
||
pt: "Zumbido Misterioso",
|
||
de: "Geheimnisvolles Summen"
|
||
},
|
||
effect: {
|
||
en: "As long as this Pokémon is on your Bench, whenever your opponent plays a Supporter card from their hand, prevent all effects of that card done to your Fairy Pokémon in play.",
|
||
fr: "Tant que ce Pokémon est sur votre Banc, chaque fois que votre adversaire joue une carte Supporter de sa main, évitez tous les effets que cette carte peut infliger à vos Pokémon Fairy en jeu.",
|
||
es: "Mientras este Pokémon esté en tu Banca, cada vez que tu rival juegue 1 carta de Partidario de su mano, evita todos los efectos de esa carta infligidos a tus Pokémon Fairy en juego.",
|
||
it: "Fintanto che questo Pokémon è nella tua panchina, ogni volta che il tuo avversario gioca una carta Aiuto dalla sua mano, previeni tutti gli effetti di quella carta sui tuoi Pokémon Fairy in gioco.",
|
||
pt: "Enquanto este Pokémon estiver no seu Banco, sempre que seu oponente jogar 1 carta de Apoiador da própria mão, prevenirá todos os efeitos daquela carta causados aos seus Pokémon Fairy em jogo.",
|
||
de: "Solang sich dieses Pokémon auf deiner Bank befindet, verhindere jedes Mal, wenn dein Gegner eine Unterstützerkarte aus seiner Hand spielt, alle Effekte jener Karte, die deinen Fairy-Pokémon im Spiel zugefügt werden."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
],
|
||
name: {
|
||
en: "Stampede",
|
||
fr: "Ruée",
|
||
es: "Estampida",
|
||
it: "Fuggi Fuggi",
|
||
pt: "Estouro",
|
||
de: "Zertrampeln"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Darkness",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 0
|
||
}
|
||
|
||
export default card
|