-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed freeze on dungeon heart destroy
removed DDrawCompat ddraw.dll file from bundle
- Loading branch information
Showing
11 changed files
with
326 additions
and
131 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
// | ||
// Created by DiaLight on 17.11.2024. | ||
// | ||
|
||
#ifndef FLAME_OBJECT_TYPE_H | ||
#define FLAME_OBJECT_TYPE_H | ||
|
||
// 1: Gold | ||
// 2: Gold | ||
// 3: Gold | ||
// 4: ResearchBook (Spell Books use treated parchment to contain their volatile words.) | ||
// 5: AlarmTrapCrate (A loose Crate containing an Alarm Trap, ready to install on a Blueprint.) | ||
// 6: ... | ||
// 7: ... | ||
// 8: TortureWheel | ||
// 9: Chicken (Drop one on a hungry minion to feed it.) | ||
// 10: CallToArms | ||
// 11: Rat (Filthy plague-carrying vermin, and the sign of a fine Prison.) | ||
// 12: ... | ||
// 13: ... | ||
// 14: ... | ||
// 15: ... | ||
// 16: ... | ||
// 17: ... | ||
// 18: ... | ||
// 19: ... | ||
// 20: ... | ||
// 21: ... | ||
// 22: ... | ||
// 23: ... | ||
// 24: ... | ||
// 25: ... | ||
// 26: ... | ||
// 27: ... | ||
// 28: PortalGem (Portal Gem: the object of your quest.) | ||
// 29: TrainingTarget | ||
// 31: TombStone | ||
// 32: TombStone | ||
// 33: TombStone | ||
// 34: TombStone | ||
// 35: Coop | ||
// 36: BoulderTrapCrate | ||
// 37: FearTrapCrate | ||
// 38: FireburstTrapCrate | ||
// 39: FreezeTrapCrate | ||
// 40: GasTrapCrate | ||
// 41: Lightning TrapCrate | ||
// 42: CentryTrapCrate | ||
// 43: SpikeTrapCrate | ||
// 44: TriggerTrapCrate | ||
// 45: ... | ||
// 46: ... | ||
// 47: Egg (It's just an egg. Nothing to get excited about.) | ||
// 48: ... | ||
// 49: ... | ||
// 50: ... | ||
// 51: ... | ||
// 52: WoodenDoorCrate | ||
// 53: SteelDoorCrate | ||
// 54: BracedDoorCrate | ||
// 55: MagicDoorCrate | ||
// 56: BarricadeCrate | ||
// 57: SecretDoorCrate | ||
// 58: LibraryBook (Ancient wisdom to aid research and improve beard quality.) | ||
// 59: ... | ||
// 60: ... | ||
// 61: ... | ||
// 62: ... | ||
// 63: ... | ||
// 64: BookCase | ||
// 65: ... | ||
// 66: ... | ||
// 67: ... | ||
// 68: ... | ||
// 69: ... | ||
// 70: GuardPost | ||
// 71: ... | ||
// 72: ... | ||
// 73: ... | ||
// 74: BoulderTrap | ||
// 75-91: ... | ||
// 92: GuardPostCrate (A loose Crate containing a Guard Post, ready to install on a Blueprint.) | ||
// 93: ... | ||
// 94: ... | ||
// 95: Pay-outLever | ||
// 96: ... | ||
// 97: ... | ||
// 98: Destructor | ||
// 99: ... | ||
// 100: ... | ||
// 101: ManaVault | ||
// 102: ... | ||
// 103: ThreatBurn | ||
// 104: ... | ||
// 105: ... | ||
// 106: ... | ||
// 107: ... | ||
// 108: ClaimedManaVault | ||
// 109: ... | ||
// 110: FECandleStick | ||
// 111: TempleCandleStick | ||
// 112: ... | ||
// 113: ... | ||
// 114: HeroGate2By2 | ||
// 115: ... | ||
// 116: PrisonBolt | ||
// 117: IncreaseLevel | ||
// 118: RevealMap | ||
// 119: MakeSafe | ||
// 120: WeakenWalls | ||
// 121: IncreaseGold | ||
// 122: Mana Boost | ||
// 123: Stun Imps | ||
// 124: Receive Imps | ||
// 125: Make Happy | ||
// 126: Make Unhappy | ||
// 127: Kill Creatures | ||
// 128: Heal All | ||
// 129: Locate Hidden Land (Allows you to reach a secret level on completion of this one) | ||
// 130: HeroLevelSelector | ||
// 131: ... | ||
// 132: ... | ||
// 133: ... | ||
// 134: ... | ||
// 135: ... | ||
// 136: ... | ||
// 137: ... | ||
// 138: ... | ||
// 139: ... | ||
// 140: ... | ||
// 141: ... | ||
// 142: ... | ||
// 143: ... | ||
// 144: ... | ||
// 145: ... | ||
|
||
|
||
|
||
#endif //FLAME_OBJECT_TYPE_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters