1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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,59 @@
import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Oricorio",
fr: "Plumeline",
es: "Oricorio",
it: "Oricorio",
pt: "Oricorio"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 90,
types: ["Fire"],
stage: "Basic",
abilities: [{
type: "Ability",
name: {
en: "Ardent Dancing",
fr: "Danse Embrasée",
es: "Danza Ardiente",
it: "Danza Ardente",
pt: "Dança Calorosa"
},
effect: {
en: "Once during your turn, you may heal 20 damage from your Active Evolution Pokémon.",
fr: "Une fois pendant votre tour, vous pouvez soigner 20 dégâts de votre Pokémon Évolutif Actif.",
es: "Una vez durante tu turno, puedes curar 20 puntos de daño a tu Pokémon Evolución Activo.",
it: "Una sola volta durante il tuo turno, puoi curare il tuo Pokémon Evoluzione attivo da 20 danni.",
pt: "Uma vez durante o seu turno, você poderá curar 20 pontos de dano do seu Pokémon de Evolução Ativo."
}
}],
attacks: [{
cost: ["Fire", "Colorless"],
name: {
en: "Flap",
fr: "Battement",
es: "Aleteo",
it: "Alabattito",
pt: "Asa"
},
damage: 30
}],
retreat: 1,
regulationMark: "G"
}
export default card