Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 6.73 KB

README.md

File metadata and controls

52 lines (41 loc) · 6.73 KB

RPG icon generator

This package generate RPG items images procedurally, based on BrianMacIntosh Algoritms

Item type

  • Blade
  • Potion
  • Axes
  • Armor
  • Hammer

Output example

Complexity Rarity equivalent Blade Examples Potion Examples Axe Examples Armor Examples Hammer Examples
0 Common Low Blade_0 Potion_0 Axe_0 Armor_0 Hammer_0
40 Common High Blade_40 Potion_40 Axe_40 Armor_40 Hammer_40
41 Uncommon Low Blade_41 Potion_41 Axe_41 Armor_41 Hammer_41
60 Uncommon High Blade_60 Potion_60 Axe_60 Armor_60 Hammer_60
61 Rare Low Blade_61 Potion_61 Axe_61 Armor_61 Hammer_61
85 Rare High Blade_85 Potion_85 Axe_85 Armor_85 Hammer_85
86 Epic Low Blade_86 Potion_86 Axe_86 Armor_86 Hammer_86
95 Epic High Blade_95 Potion_95 Axe_95 Armor_95 Hammer_95
96 Outstanding Low Blade_96 Potion_96 Axe_96 Armor_96 Hammer_96
100 Outstanding High Blade_100 Potion_100 Axe_100 Armor_100 Hammer_100

installation

pip install rpg-icon-generator

You will need to install Cairo for the images part Checkout this https://pypi.org/project/drawSvg/ to install it

Usage

from rpg_icon_generator import Blade_Generator
generator = Blade_Generator()
seed = datetime.now() # provide a seed for this blade 

# the image will be in test/out/[seed].png
# the image will be 32*2 by 32*2 pixels
# complexity ranging from 0 to 100
generator.generate(seed=seed, complexity=50, dimension=32, render_scale=2, output_directory='test/out/')
# Same for the other generator
from rpg_icon_generator import Potion_Generator, Axe_Generator, Armor_Generator, Hammer_Generator