Advertisement
mellefighter

Proxydex

Aug 25th, 2019
564
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.58 KB | None | 0 0
  1. class Proxydex(object):
  2.     entries = [
  3.         Entry("Xazela", Type.GRASS, Group.DEFAULT,
  4.               "This grass type Proxymon is known as the deer of life. It's "
  5.               "horns have flowers blooming at the end of it, which is called "
  6.               "the \"Fire of Life.\""
  7.               "it's end."),
  8.  
  9.         Entry("Xalabrat", TypeDual(GRASS=True, PSYCHIC=True), Group.DEFAULT,
  10.               "Xazela's evolution makes it quite smug as it thinks it is "
  11.               "above everyone else. It has multiple flowers on it's body and "
  12.               "sunflowers on it's new and stronger horns."),
  13.  
  14.         Entry("Xatopia", TypeDual(GRASS=True, PSYCHIC=True), Group.DEFAULT,
  15.               "Xatopia is the final evolution of Xazela. In this stage "
  16.               "Xatopia has a beautiful, leafy cape and long elder branches "
  17.               "with vines growing on them. Xatopia uses it's psychic powers "
  18.               "to levitate itself on a rock to stand above others."),
  19.  
  20.         Entry("Aithos", Type.FIRE, Group.DEFAULT,
  21.               "Aithos is a flaming baby horse. Changes in emotion can cause "
  22.               "it's flames to increase rapidly or decrease dramatically."),
  23.  
  24.         Entry("Salaqua", Type.WATER, Group.DEFAULT,
  25.               "Despite it's appearance, Salaqua is highly intelligent. It "
  26.               "utilizes it's poison sacs on it's head, knees, and tail for "
  27.               "lethal blows."),
  28.  
  29.         Entry("Layphe", Type.FAIRY, Group.DEFAULT,
  30.               None),
  31.  
  32.         Entry("Forko", TypeDual(DARK=True, NORMAL=True), Group.DEFAULT,
  33.               "These Proxymon are said to be the largest amount of Proxymon "
  34.               "in the world due to breeding and avoiding conflict."),
  35.  
  36.         Entry("Harko", TypeDual(DARK=True, STEEL=True), Group.DEFAULT,
  37.               "Compared to it's pre-evolved state this Proxymon is considered "
  38.               "one of the strongest. It's fur has become metal making the "
  39.               "only weak spots on it's body small hard to hit places."),
  40.  
  41.         Entry("Newster", TypeDual(WATER=True, POISON=True), Group.DEFAULT,
  42.               "This is a Proxymon that lives in the sewers. Because of this, "
  43.               "the body is 95% toxic waste while the feet are 100% Sewage. "
  44.               "The body is full of holes that constantly release deadly gas. "
  45.               "Two eyes mutated on top of the head."),
  46.  
  47.         Entry("Tenofa", TypeDual(FIRE=True, ICE=True), Group.DEFAULT,
  48.               "This seal-like Proxymon's tails are eternally aflame. When "
  49.               "diving the flame constantly makes steam. The steam is used to "
  50.               "hide itself from enemies."),
  51.  
  52.         Entry("Gwhodin", Type.GHOST, Group.DEFAULT,
  53.               "A cursed book brought to life through the cursed bookmark. It "
  54.               "radiates a psychic, ghastly aura. The book has multiple walls "
  55.               "of forbidden tome texts."),
  56.  
  57.         Entry("Hagouiji", TypeDual(GHOST=True, UNKNOWN=True), Group.DEFAULT,
  58.               "Hagouijis are formed when a trainer constantly reads a Gwhodin "
  59.               "causing the Gwhodin to allow the trainer to see it's secret "
  60.               "pages. Once the trainer reads said pages Gwhodin will evolve "
  61.               "into Hagouiji. However only the most elite trainers are "
  62.               "capable of accomplishing this task and keeping the Hagouiji "
  63.               "under control."),
  64.  
  65.         Entry("Velerapro", Type.ROCK, Group.DEFAULT,
  66.               "This Proxymon was found as a fossil in the region and revived "
  67.               "with modern technology. The Proxymon itself resembles a "
  68.               "Velociraptor as shown by it's single large toe on each foot."),
  69.  
  70.         Entry("Paporaptor", TypeDual(ROCK=True, DRAGON=True), Group.DEFAULT,
  71.               "Upon evolving, Velerapro gains a birdlike appearance. This "
  72.               "helps Paporaptor move faster and more viciously."),
  73.  
  74.         Entry("Lavin", TypeDual(FIRE=True, ROCK=True), Group.DEFAULT,
  75.               None),
  76.  
  77.         Entry("Magoni", TypeDual(FIRE=True, ROCK=True), Group.DEFAULT,
  78.               None),
  79.  
  80.         Entry("Doros", Type.DARK, Group.DEFAULT,
  81.               "It wears the scarf of it's dead father and steals money from "
  82.               "young children during the night. If it is ever in danger, it "
  83.               "can become invisible to deceive predators and attack them at "
  84.               "the most unexpected time. They can be found in the shadows "
  85.               "hiding from the day light."),
  86.  
  87.         Entry("Daroxoros", TypeDual(DARK=True, GHOST=True), Group.DEFAULT,
  88.               None)
  89.     ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement