Prefix & Suffix System

● ARCHIVED · READ-ONLY
Started by randomuser 4 posts View original ↗
  1. edit
  2. Prefix and suffix system is easy: just take an equip and change its name. One-liner.

    (ok and of course change the parameters which is a couple lines)

    What you are requesting is

    -a forging/enchantment system

    -a dismantle system (Bubbles released one recently. Will need to be modified though)

    And of course, a custom inventory system that treats each equip separately (two english versions that I know of, maybe some japanese ones I've never seen)
  3. edit
  4. The name itself is one-liner. Grabbing the prefix and suffix is just looking up a table or two.



    Code:
    def name
       return @prefix + @name + @suffix
    end
    If you want passive states (or auto-states I guess), I would first find an appropriate script that adds auto-states. Preferably as a feature since most of the logic revolves around those.