-
Notifications
You must be signed in to change notification settings - Fork 0
/
dseg.asm
120 lines (120 loc) · 4.65 KB
/
dseg.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
include(`data/config.asm')
include(`data/dungeon/portalValues.asm')
include(`data/location.asm')
include(`data/strings/commands.asm')
include(`data/strings/camp.asm')
include(`data/strings/classes.asm')
include(`data/character/classes.asm')
include(`data/buildings/camp/functions.asm')
include(`building/tavern/data.asm')
include(`building/temple/data.asm')
include(`data/strings/pronouns.asm')
include(`data/character/advancement.asm')
include(`data/strings/emptyBuilding.asm')
include(`data/strings/storage.asm')
include(`data/strings/disk.asm')
include(`data/character/displayAbbreviations.asm')
include(`data/character/statuses.asm')
include(`data/gfx/dungeon/minimap.asm')
include(`data/mouse.asm')
include(`data/levelFileIndex.asm')
include(`data/gfx/bigpic.asm')
include(`data/strings/misc.asm')
include(`data/map/packedCharacters.asm')
include(`data/byteMasks.asm')
include(`data/strings/directions.asm')
include(`data/directionDeltas.asm')
include(`data/gfx/wild/viewDeltas.asm')
include(`data/gfx/tile/quadrantWidth.asm')
include(`data/gfx/tile/quadrantScaleFactor.asm')
include(`data/gfx/tile/quadrantAspectOffset.asm')
include(`data/gfx/wild/viewSquares.asm')
include(`data/gfx/dungeon/passableFaces.asm')
include(`data/gfx/dungeon/transparentFaces.asm')
include(`data/gfx/dungeon/viewDeltas.asm')
include(`data/gfx/dungeon/squareToFace.asm')
include(`data/gfx/dungeon/lightBaseTopology.asm')
include(`data/gfx/tile/rightFlags.asm')
include(`data/gfx/dungeon/topologyToSquare.asm')
include(`data/gfx/dungeon/topologySquareShift.asm')
include(`data/gfx/tile/quadrantCoordinates.asm')
include(`data/gfx/dungeon/enableTopology.asm')
include(`data/gfx/wild/topologyList.asm')
include(`data/buildings/storage/inventory.asm')
include(`data/gfx/dungeon/background.asm')
include(`data/gfx/icons/icons.asm')
include(`data/strings/spells.asm')
include(`data/strings/character.asm')
include(`data/strings/items.asm')
include(`data/items/baseCount.asm')
include(`data/items/damageDice.asm')
include(`data/items/bonuses.asm')
include(`data/items/genericTypes.asm')
include(`data/items/equip.asm')
include(`data/items/equippedEffectList.asm')
include(`data/items/spellNumber.asm')
include(`data/character/races.asm')
include(`data/character/genders.asm')
include(`data/character/dexterityAcBonus.asm')
include(`data/character/inventoryFunctions.asm')
include(`data/map/vmFunctions.asm')
include(`data/character/monkDamage.asm')
include(`data/strings/melee.asm')
include(`data/strings/battle.asm')
include(`data/battle/partyFunctions.asm')
include(`data/battle/baseAttackPriority.asm')
include(`data/battle/classToHitBonus.asm')
include(`data/battle/monsterAcBonus.asm')
include(`data/battle/monsterSpeedAcBonus.asm')
include(`data/battle/poisonDamage.asm')
include(`battle/chest/data.asm')
include(`data/strings/characterAction.asm')
include(`data/strings/teleport.asm')
include(`data/spells/scry.asm')
include(`data/spells/castFlags.asm')
include(`data/spells/effectData.asm')
include(`data/spells/extraData.asm')
include(`data/spells/spellPoints.asm')
include(`data/spells/damage.asm')
include(`data/items/useableWeapons.asm')
include(`data/items/figurines.asm')
include(`data/character/classSpellIndex.asm')
include(`data/character/saveBonus.asm')
include(`data/spells/light.asm')
include(`data/spells/teleport.asm')
include(`data/spells/batch.asm')
include(`data/spells/geomancer.asm')
include(`data/spells/functions.asm')
include(`data/strings/songs.asm')
include(`data/strings/singing.asm')
include(`data/items/instrumentTypes.asm')
include(`data/strings/review.asm')
include(`data/buildings/review/spellLevelCost.asm')
include(`data/buildings/review/spelllevelData.asm')
include(`data/buildings/review/hpIncreaseMask.asm')
include(`data/buildings/review/convertKeyList.asm')
include(`data/buildings/review/questFunctions.asm')
include(`data/buildings/review/conversionFunctions.asm')
include(`data/strings/traps.asm')
include(`data/strings/victory.asm')
include(`data/strings/title.asm')
include(`data/strings/dungeon.asm')
include(`data/strings/detectMessages.asm')
include(`data/traps/specialAttacks.asm')
include(`data/traps/diceList.asm')
include(`data/traps/indexByLevel.asm')
include(`data/traps/saveValues.asm')
include(`data/spells/detect.asm')
include(`data/dungeon/itemRewardTable.asm')
include(`data/dungeon/specialSquares.asm')
include(`data/dungeon/wanderer.asm')
include(`data/strings/bardsHall.asm')
include(`data/buildings/bardsHall/data.asm')
include(`data/monsters/summonData.asm')
include(`data/strings/transfer.asm')
include(`data/transfer/bt1InventoryMap.asm')
include(`data/transfer/bt2InventoryMap.asm')
include(`data/transfer/bt2ClassMap.asm')
include(`data/copyProtection.asm')
include(`lib/d3cmp/data.asm')
include(`data/runtime.asm')