Metagame

Wouter's White Box Game
Post Reply
User avatar
Wouter
Posts: 688
Joined: Sat Mar 12, 2016 4:56 pm
Location: The Netherlands

Metagame

Post by Wouter »

Combat

Code: Select all

#  Name                 HP     AC  AB  TH   D  MA  Melee weapon (dmg)                           Missile weapon (dmg)
--------------------------------------------------------------------------------------------------------------------
1  Dahl Kolla         8/ 8  4[15]  +1  +1  +1  +0  Spear (1d6), Hand axe (1d6), Dagger (1d6-1)
2  Memphisto          7/ 7  9[10]  +0  -1  +0  -1  Staff (1d6), Dagger (1d6-1)
3  Lisglen the Sage  10/10  7[12]  +0  +0  +0  +0  Staff (1d6)
4  Van Illundra       9/ 9  5[14]  +1  +1  +1  +0  Battle axe (1d6+1)                           Short bow (1d6-1)
5  Holger             7/ 7  6[13]  +1  +1  +1  +0  Longsword (1d6+1)
6  Balthus            7/ 7  3[16]  +1  +1  +1  +0  Longsword (1d6+1), Hand axe (1d6)
7  Albin (NPC)        7/ 7  7[12]  +0  +0  +0  +0  Dagger (1d6-1)                               Longbow (1d6)
Character advancement

Code: Select all

#  Name              Race      Class       Lvl   HD     XP  Bonus  Nxt lvl
--------------------------------------------------------------------------
1  Dahl Kolla        Human     Fighter       2    2  2,730    +5%    4,000
2  Memphisto         Human     Magic-User    2  1+1  2,860   +10%    5,000
3  Lisglen the Sage  Human     Cleric        2    2  2,860   +10%    3,000
4  Van Illundra      Human     Fighter       2    2  2,503    +5%    4,000
5  Holger            Human     Fighter       2    2  3,930    +5%    4,000
6  Balthus           Human     Fighter       1  1+1    187    +5%    2,000
7  Albin (NPC)       Human     Fighter       1  1+1  1,500    +0%    2,000
Game mechanics

Code: Select all

#  Name              ST  Bonus                   Opn drs  Hr noise  Hirelings
-------------------------------------------------------------------------------------
1  Dahl Kolla        13  +2 vs death/poison       3-in-6    1-in-6  5 max, +1 loyalty
2  Memphisto         14  +2 vs spells             1-in-6    1-in-6  5 max, +1 loyalty
3  Lisglen the Sage  14  +2 vs poison/paralysis   2-in-6    1-in-6  5 max, +1 loyalty
4  Van Illundra      13  +2 vs death/poison       3-in-6    1-in-6  2 max, -2 loyalty
5  Holger            13  +2 vs death/poison       3-in-6    1-in-6  5 max, +1 loyalty
6  Balthus           14  +2 vs death/poison       3-in-6    1-in-6  5 max, +1 loyalty
7  Albin (NPC)       14  +2 vs death/poison       3-in-6    1-in-6  5 max, +1 loyalty
Encumbrance and movement

Code: Select all

#  Name              Mod  Eqpmt  Coins  Move
--------------------------------------------
1  Dahl Kolla        +20     87      0    12
2  Memphisto         -20     22      0    12
3  Lisglen the Sage   +0     70      0    12
4  Van Illundra      +20     75      0    12
5  Holger            +20     55      0     9
6  Balthus           +20     77      0    12
7  Albin (NPC)        +0     42      0    12
Resources

Code: Select all

#  Name              Cndl  Trch   Oil   Rtn   Wtr  Arrw   Spk  Rope
-------------------------------------------------------------------
1  Dahl                 0     0     0     9     1     0    12    50
2  Memphisto            3     6     5     9     1     0     6     0     
3  Lisglen the Sage     0     0     1     9     1     0     0    50
4  Van Illundra        10     0     4     9     1    20     0    50
5  Holger               0     0     0     4     1     0     6    50
6  Balthus              0     5     0     3     1     0     0    50
7  Albin (NPC)          0     0     0     4     1    20     0     0

User avatar
Wouter
Posts: 688
Joined: Sat Mar 12, 2016 4:56 pm
Location: The Netherlands

Marching order

Post by Wouter »

In 3 m wide corridors:

Code: Select all

    Van   Albin
 Lisglen   Dahl
    Memphisto
  Holger  Balthus
Single file:

Code: Select all

Albin
Lisglen
Van
Memphisto
Dahl
Balthus
Holger

User avatar
Wouter
Posts: 688
Joined: Sat Mar 12, 2016 4:56 pm
Location: The Netherlands

Acquired wealth

Post by Wouter »

Guarded by Finnur at the ‘Hunter's Moon’ in the village of Jodcar:
  • One sapphire (1,000 gp)
  • 8 gems (10 gp each)
  • 60 gold pieces
  • 1,449 silver pieces

User avatar
Wouter
Posts: 688
Joined: Sat Mar 12, 2016 4:56 pm
Location: The Netherlands

Acquired other stuff

Post by Wouter »

Guarded by Finnur at the ‘Hunter's Moon’ in the village of Jodcar:
  • Keg of halfling pipeweed
  • Black bladed, magically cursed sword
  • Passage from a book
  • Scroll bearing the legend "FEAR NOT THE TIGER"

Post Reply