Correct spelling.
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2019 / 07 / 01.mkd
blob25cfade3173952e504a6346e5eda30f1a50f19f1
1 # 2019/07/01
3 ## 08:23
5 Yay new month! Need atomic check, get, and set for monitors and such so
6 that way it works properly!
8 ## 08:25
10 Also I should add a way to turn default exception handling on and off.
12 ## 08:31
14 But actually that is done by the explicit exception check.
16 ## 10:10
18 Okay so I actually have a great idea for Squirrel Quarrel:
20  * Have the game be actual squirrels and squirrel like.
21  * Turn based strategy game with AI opponents.
22  * All four seasons varying what happens in the game (snow, leaves, etc.)
23    and have it do special things.
24    * A season could last 14 turns (two weeks)
25  * Gathering of acorns and storing into caches.
26  * Allow acorns to be burried and give them a percent chance to sprout
27    into a tree which then takes a full year to grow. The sprout can be
28    destroyed before it turns into a tree. After an entire year passes
29    the sprout turns into a tree. Prevent walls of trees from being
30    created. Burrying acorns remembers their location, there could be
31    randomly burried acorns or "gifts" in the ground such as weapons
32    or otherwise. Burrying acorns can quickly be used as a stash in the
33    event that no proper stashes are available. Have just three basic
34    building types:
35    * Dreys (Squirrel nests), only in trees -- Spawns new squirrels after
36      a few turns requiring acorns. Acorns can be stashed in dreys but only
37      in smaller amounts. Dreys can also store a few squirrels to heal up
38      as needed.
39    * Stashes, trees/ground -- Allows acorns to be stashed in larger
40      quantities and allows them to be spent.
41    * Armory, ground -- Allows weapons to be constructed.
42  * Very simplisitic game with simple rules and just squirrels as units.
43  * Allow squirrels to be armored and given weapons such as swords and
44    shields to allow their damage to increase.
45  * Add buildings such as dreys which "breed" (really build) squirrels
46    which can take a few turns. Dreys can be only be built in trees.
47  * Start with a single squirrel. Acorn stashes are just used to store
48    acorns long term.
49  * Randomly generated levels, with trees around and basic edges. Keep
50    everything flat so it is very easy to do and make level generators
51    for.
52  * Have team based AIs and such!
53  * Acorns must be stashed in a drey or stash before they can be spent.
54  * Acorns do not drop in the winter and spring, they drop in small amounts
55    in summer and larger amounts in autumn. Although acorns in autumn do
56    not regenerate once dropped. Leaves fall in autumn as well. In winter
57    one must contend with snow conditions.
58  * Squirrels rest heal a small amount by standing still. Faster healing is
59    available when inside of a drey.
60  * Sprouts which are next trees or buildings will never grow into a tree.
61  * Allow movement through trees, although it costs higher movement.
62  * Dreys and stashes can be placed in the center of the tree for building.
63  * Squirrels can hide in leaf piles on the ground in autumn and in snow
64    piles in winter.
65  * Victory can either be destroying all the other enemy squirrels or stashing
66    the most acorns after a given time limit.
67  * Have a "Z" axis, one which involves being on a tree level and the ground
68    level. Tree levels can only be accessed by climbing a trunk of a tree. One
69    can drop on the ground at any point. This can be used to cross rivers for
70    example which will not be crossable unless there are stepping stones.
71    Squirrels in trees can drop down. Squirrels can drop down onto other
72    squirrels for a stronger attack, and the other squirrel will just be pushed
73    aside.
74  * Squirrels in armor increase the protection of the squirrels but reduces
75    movement speed. A squirrel which drops in armor is stunned for a turn
76    unable to move after dropping.
77  * Only a single unit can stand in a tile at a time, all buildings can be
78    walked over.
79  * Squirrels can steal acorns from enemy players in the event they need them.
80  * Squirrels can carry a limited number of acorns before they have to put them
81    in the stash. As usual, they must be stashed in the proper building in
82    order for them to be used.
83  * If a squirrel dies, it drops everything it is carying including weapons and
84    armor. However to prevent the massive proliferation of armor and weapons,
85    after a squirrel dies they will become rusted and only half affective but
86    still with their full debuffs. This is to make players not be afraid of
87    losing armored units and them getting free armor units. Armor and swords
88    do break after awhile.
89  * There is only a single currency: Acorns. Everything uses them and they
90    should never run out in the map.
92 ## 16:37
94 I want to keep the tileset simple. Keeping everything simplified the tilemap
95 will just be bytes, since that is simple.
97  * 2-bits: Pile type
98    * None
99    * Acorns
100    * Leaves
101    * Snow
102  * 2-bits: Pile size
103    * None
104    * Small (50 acorns, noisy leaves, snow movement -1)
105    * Medium (100 acorns, stealth+noisy leaves, snow movement -2)
106    * Large (200 acorns, stealth, snow movement -3)
107  * 2-bits: Tile orientation
108    * 0: NW, Tree Trunk
109    * 1: NE, Tree Leaves 1
110    * 2: SW, Tree Leaves 2
111    * 3: SE, Tree Leaves 3
112  * 2-bits: Tile type
113    * 0: Grass
114    * 1: Water/River
115    * 2: Dirt
116    * 3: Tree