1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 04:41:57 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Pupitar",
fr: "Ymphect",
},
illustrator: "Yuka Morii",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
247,
],
hp: 70,
types: [
"Fightning",
],
evolveFrom: {
en: "Larvitar",
fr: "Embrylex",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Hard Shell Evolution",
fr: "Évolution Carapadure",
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may prevent all damage done to this Pokémon by your opponent's attacks until the end of your opponent's next turn.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer lun de vos Pokémon pendant votre tour, vous pouvez éviter tous les dégâts infligés à ce Pokémon par les attaques de votre adversaire jusquà la fin du prochain tour de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hammer In",
fr: "Enfoncement",
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card