1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +00:00

feat: Paldean Fates and Temporal Forces (#478)

This commit is contained in:
2024-03-25 00:30:17 +01:00
committed by GitHub
parent 0c29886812
commit 2d27a129a1
472 changed files with 25187 additions and 7 deletions

View File

@@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
set: Set,
name: {
en: "Ribombee",
fr: "Rubombelle",
es: "Ribombee",
it: "Ribombee",
pt: "Ribombee"
},
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"
},
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."
},
damage: 30
}],
retreat: 0,
regulationMark: "H"
}
export default card