1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

62 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [741],
set: Set,
name: {
en: "Oricorio",
fr: "Plumeline",
es: "Oricorio",
it: "Oricorio",
pt: "Oricorio",
de: "Choreogel"
},
rarity: "Rare",
category: "Pokemon",
hp: 90,
types: ["Fire"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "Oswaldo KATO",
description: {
en: "This Oricorio has drunk red nectar. If its Trainer gives the wrong order, this passionate Pokémon becomes fiercely angry."
},
abilities: [{
type: "Ability",
name: {
en: "Lesson in Zeal"
},
effect: {
en: "All of your Fusion Strike Pokémon take 20 less damage from attacks from your opponent's Pokémon (after applying Weakness and Resistance). You can't apply more than 1 Lesson in Zeal Ability at a time."
}
}],
attacks: [{
cost: ["Fire", "Colorless"],
name: {
en: "Glistening Droplets"
},
effect: {
en: "Put 5 damage counters on your opponent's Pokémon in any way you like."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card