mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
71
data/Sun & Moon/Ultra Prism/23.ts
Normal file
71
data/Sun & Moon/Ultra Prism/23.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Ultra Prism'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Infernape",
|
||||
fr: "Simiabraz",
|
||||
},
|
||||
illustrator: "nagimiso",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
392,
|
||||
],
|
||||
hp: 130,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Monferno",
|
||||
fr: "Chimpenfeu",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Flaming Fighter",
|
||||
fr: "Combattant Incandescent",
|
||||
},
|
||||
effect: {
|
||||
en: "Put 6 damage counters instead of 2 on your opponent's Burned Pokémon between turns.",
|
||||
fr: "Placez 6 marqueurs de dégâts au lieu de 2 sur le Pokémon Brûlé de votre adversaire entre chaque tour.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Burst Punch",
|
||||
fr: "Poing d’Enfer",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user