Creating Gameplay
Define your core data.
Define currencies and inventory slots.
Define your Data Base Model data
-
Define your unit attributes.
-
Example: In warcraft3, hero units have 3 Attributes: Strength, Intelligence, Agility. One of them is the hero’s primary attribute. E.g. the blade master’s primary attribute is Agility. Under the hood there are 6 Attributes: Strength, Intelligence, Agility, StrengthPrimary, IntelligencePrimary, AgilityPrimary and each hero unit gets assigned 1 primary and 2 secondary attributes. You can model Attributes exactly like that in TBE.
-
-
Create Units
-
See Creating Units.
-
-
Create Abilities
-
An Ability is assigned to a Unit and (instances of) that Unit can then "cast" that Ability.
-
It is possible to create an Ability and assign it to multiple Units but bear in mind that Abilities can call Unit animations and those animations must be present in each Unit that should use the Ability.
-