-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRanges.pas
40 lines (29 loc) · 842 Bytes
/
Ranges.pas
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
(*
Copyright (C) 2024 Jeffrey Getzin.
Licensed under the GNU General Public License v3.0 with additional terms.
See the LICENSE file in the repository root for details.
*)
[Environment]Module Ranges;
Const
MIN_TREASURE_NUMBER = 1;
MAX_TREASURE_NUMBER = 150;
MIN_ITEM_NUMBER = 0;
MAX_ITEM_NUMBER = 449;
MIN_QUANTITY_NUMBER = MIN_ITEM_NUMBER;
MAX_QUANTITY_NUMBER = MAX_ITEM_NUMBER;
MIN_PICTURE_NUMBER = 0;
MAX_PICTURE_NUMBER = 150;
MIN_ROSTER_NUMBER = 1;
MAX_ROSTER_NUMBER = 20;
MIN_PARTY_NUMBER = 1;
MAX_PARTY_NUMBER = 6;
MIN_MONSTER_NUMBER = 1;
MAX_MONSTER_NUMBER = 450;
MIN_MESSAGE_NUMBER = 1;
MAX_MESSAGE_NUMBER = 999;
{
Message_group = Array [1..999] of line;
List_of_items = Array [0..449] of Item_record;
List_of_Amounts = Array [0..449] of Integer;
}
End.