1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 13:52:13 +00:00

71 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Entei",
fr: "Entei",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
244,
],
hp: 130,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Rally Back",
fr: "Répercussions",
},
effect: {
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during their last turn, this attack does 90 more damage.",
fr: "Si lun de vos Pokémon a été mis K.O. par les dégâts dune attaque de votre adversaire pendant son dernier tour, cette attaque inflige 90 dégâts supplémentaires.",
},
damage: 30,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Fire Mane",
fr: "Crinière de Feu",
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card