1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 04:49:19 +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,76 @@
import { Card } from '../../../interfaces'
import Set from '../Dragons Exalted'
const card: Card = {
name: {
en: "Serperior",
fr: "Majaspic",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
497,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Servine",
fr: "Lianaja",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Royal Heal",
fr: "Soin Royal",
},
effect: {
en: "At any time between turns, heal 10 damage from each of your Pokémon.",
fr: "N'importe quand entre chaque tour, soignez 10 dégâts à chacun de vos Pokémon.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Leaf Tornado",
fr: "Phytomixeur",
},
effect: {
en: "Move as many Grass Energy attached to your Pokémon to your other Pokémon in any way you like.",
fr: "Déplacez autant d'Énergies Grass attachées à vos Pokémon que vous voulez vers vos autres Pokémon, de la manière que vous voulez.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 1,
}
export default card