1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
TCGdex [Bot] e36865e971
editor: fix temporal forces variants (#515)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:57 +02:00

55 lines
1.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
dexId: [743],
set: Set,
name: {
en: "Ribombee",
fr: "Rubombelle",
es: "Ribombee",
it: "Ribombee",
pt: "Ribombee",
de: "Bandelby"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
en: "Plentiful Pollen",
fr: "Pollen Abondant",
es: "Polen Copioso",
it: "Polline a Volontà",
pt: "Abundância de Pólen",
de: "Pollenreichtum"
},
effect: {
en: "During your next turn, if the Defending Pokémon is Knocked Out, take 2 more Prize cards.",
fr: "Pendant votre prochain tour, si le Pokémon Défenseur est mis K.O., récupérez 2 cartes Récompense supplémentaires.",
es: "Durante tu próximo turno, si el Pokémon Defensor queda Fuera de Combate, coge 2 cartas de Premio más.",
it: "Durante il tuo prossimo turno, se il Pokémon difensore viene messo KO, prendi due carte Premio in più.",
pt: "Durante o seu próximo turno, se o Pokémon Defensor for Nocauteado, pegue 2 cartas de Prêmio a mais.",
de: "Wenn das Verteidigende Pokémon während deines nächsten Zuges kampfunfähig wird, nimm 2 Preiskarten mehr."
},
damage: 30
}],
retreat: 0,
regulationMark: "H",
variants: {
holo: false
}
}
export default card