Changeset e200d790d77a9428b9fda7da206d78266d3d237f
- Timestamp:
- 02/25/07 10:05:17
(2 years ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1172394317 +0100
- git-parent:
[46ed2aea2546b304b58a5ecc553aa806ac5606ba]
- git-author:
- Christopher Jung <bktheg@web.de> 1172394317 +0100
- Message:
Ein paar Kommentare hinzugefuegt
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc7a19bf |
re200d79 |
|
| 29 | 29 | */ |
|---|
| 30 | 30 | public class Resources { |
|---|
| | 31 | /** |
|---|
| | 32 | * Die Resource Nahrung |
|---|
| | 33 | */ |
|---|
| 31 | 34 | public static final ResourceID NAHRUNG = new WarenID(0); |
|---|
| | 35 | /** |
|---|
| | 36 | * Die Resource Deuterium |
|---|
| | 37 | */ |
|---|
| 32 | 38 | public static final ResourceID DEUTERIUM = new WarenID(1); |
|---|
| | 39 | /** |
|---|
| | 40 | * Die Resource Kunststoffe |
|---|
| | 41 | */ |
|---|
| 33 | 42 | public static final ResourceID KUNSTSTOFFE = new WarenID(2); |
|---|
| | 43 | /** |
|---|
| | 44 | * Die Resource Titan |
|---|
| | 45 | */ |
|---|
| 34 | 46 | public static final ResourceID TITAN = new WarenID(3); |
|---|
| | 47 | /** |
|---|
| | 48 | * Die Resource Uran |
|---|
| | 49 | */ |
|---|
| 35 | 50 | public static final ResourceID URAN = new WarenID(4); |
|---|
| | 51 | /** |
|---|
| | 52 | * Die Resource Antimaterie |
|---|
| | 53 | */ |
|---|
| 36 | 54 | public static final ResourceID ANTIMATERIE = new WarenID(5); |
|---|
| | 55 | /** |
|---|
| | 56 | * Die Resource Adamatium |
|---|
| | 57 | */ |
|---|
| 37 | 58 | public static final ResourceID ADAMATIUM = new WarenID(6); |
|---|
| | 59 | /** |
|---|
| | 60 | * Die Resource Platin |
|---|
| | 61 | */ |
|---|
| 38 | 62 | public static final ResourceID PLATIN = new WarenID(7); |
|---|
| | 63 | /** |
|---|
| | 64 | * Die Resource Silizium |
|---|
| | 65 | */ |
|---|
| 39 | 66 | public static final ResourceID SILIZIUM = new WarenID(8); |
|---|
| | 67 | /** |
|---|
| | 68 | * Die Resource Xentronium |
|---|
| | 69 | */ |
|---|
| 40 | 70 | public static final ResourceID XENTRONIUM = new WarenID(9); |
|---|
| | 71 | /** |
|---|
| | 72 | * Die Resource Erz |
|---|
| | 73 | */ |
|---|
| 41 | 74 | public static final ResourceID ERZ = new WarenID(10); |
|---|
| | 75 | /** |
|---|
| | 76 | * Die Resource Isochips |
|---|
| | 77 | */ |
|---|
| 42 | 78 | public static final ResourceID ISOCHIPS = new WarenID(11); |
|---|
| | 79 | /** |
|---|
| | 80 | * Die Resource Batterien |
|---|
| | 81 | */ |
|---|
| 43 | 82 | public static final ResourceID BATTERIEN = new WarenID(12); |
|---|
| | 83 | /** |
|---|
| | 84 | * Die Resource Leere Batterien |
|---|
| | 85 | */ |
|---|
| 44 | 86 | public static final ResourceID LBATTERIEN = new WarenID(13); |
|---|
| | 87 | /** |
|---|
| | 88 | * Die Resource Antarit |
|---|
| | 89 | */ |
|---|
| 45 | 90 | public static final ResourceID ANTARIT = new WarenID(14); |
|---|
| | 91 | /** |
|---|
| | 92 | * Die Resource Shivanische Artefakte |
|---|
| | 93 | */ |
|---|
| 46 | 94 | public static final ResourceID SHIVARTE = new WarenID(15); |
|---|
| | 95 | /** |
|---|
| | 96 | * Die Resource Artefakte der Uralten |
|---|
| | 97 | */ |
|---|
| 47 | 98 | public static final ResourceID ANCIENTARTE = new WarenID(16); |
|---|
| | 99 | /** |
|---|
| | 100 | * Die Resource Boese Admins |
|---|
| | 101 | */ |
|---|
| 48 | 102 | public static final ResourceID BOESERADMIN = new WarenID(17); |
|---|
| | 103 | /** |
|---|
| | 104 | * Die Spezialresource Items |
|---|
| | 105 | */ |
|---|
| 49 | 106 | public static final ResourceID ITEMS = new WarenID(18); |
|---|
| 50 | 107 | |
|---|