Difference between revisions of "Endless Wiki To Do List"

From Amulets & Armor Wiki
Jump to: navigation, search
(Created page with "=== Task: Character starting stats === The following starting stats data from the code needs to be entered for all the characters: <PRE> #define NUM_ATTRIBUTES 6 typedef e...")
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=== Task: Character starting stats ===
+
=== Task: Quest pages ===
 +
Add pages for all the quests, with basic info, maybe maps of each level?
  
The following starting stats data from the code needs to be entered for all the characters:
+
=== Task: Scripting pages ===
 
+
Continue adding entries for each scripting command
<PRE>
+
 
+
#define NUM_ATTRIBUTES 6
+
 
+
typedef enum
+
{
+
    ATTRIBUTE_STRENGTH,
+
    ATTRIBUTE_SPEED,
+
    ATTRIBUTE_MAGIC,
+
    ATTRIBUTE_ACCURACY,
+
    ATTRIBUTE_STEALTH,
+
    ATTRIBUTE_CONSTITUTION,
+
} E_statsAttributeType;
+
 
+
 
+
const T_byte8 *G_statsCharacterTypeNames[NUM_CLASSES]={"Citizen",
+
                                                  "Knight",
+
                                                  "Mage",
+
                                                  "Warlock",
+
                                                  "Priest",
+
                                                  "Rogue",
+
                                                  "Archer",
+
                                                  "Sailor",
+
                                                  "Paladin",
+
                                                  "Mercenary",
+
                                                  "Magician"};
+
 
+
const T_byte8 G_statsCharacterAttributes[NUM_CLASSES][NUM_ATTRIBUTES]=
+
                                                  {{25,25,25,25,25,25},
+
                                                  {35,15,10,20,15,35},
+
                                                  {10,25,35,25,20,15},
+
                                                  {25,20,30,20,15,20},
+
                                                  {15,20,35,15,20,25},
+
                                                  {15,30,15,25,30,15},
+
                                                  {20,20,15,35,20,20},
+
                                                  {25,25,10,20,15,35},
+
                                                  {30,20,25,15,10,30},
+
                                                  {30,20,10,25,20,25},
+
                                                  {15,30,30,20,20,15}};
+
 
+
 
+
 
+
</PRE>
+

Latest revision as of 06:37, 5 November 2015

Task: Quest pages

Add pages for all the quests, with basic info, maybe maps of each level?

Task: Scripting pages

Continue adding entries for each scripting command