forked from yani/keeperbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.php
45 lines (37 loc) · 3.12 KB
/
commands.php
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
<?php
/**
* A list of single text commands.
*
* --Disable dictionary for this file: cSpell: disable
*/
return [
// General
'!keeperklan' => 'https://keeperklan.com',
'!megathread' => 'https://www.reddit.com/r/dungeonkeeper/comments/1319ns5/dungeon_keeper_megathread/',
'!fandom' => 'https://dungeonkeeper.fandom.com/wiki/Dungeon_Keeper_Wiki',
// DK1 / KFX
'!keeperfx' => 'https://keeperfx.net',
'!lubiki' => 'https://lubiki.keeperklan.com/index.php',
'!unearth' => 'https://keeperfx.net/workshop/item/1/unearth',
'!implauncher' => 'https://keeperfx.net/workshop/item/410/implauncher-beta',
'!workshop' => 'You can find custom KeeperFX content like custom maps, campaigns, tools, assets, and much more on the KeeperFX.net workshop: https://keeperfx.net/workshop/browse',
'!kfxrepo' => 'https://github.com/dkfans/keeperfx',
'!buildkfx' => 'https://keeperfx.net/wiki/building-keeperfx',
'!controls' => 'https://keeperfx.net/wiki/new-game-controls-and-commands',
'!palette' => 'https://github.com/dkfans/FXInfo/wiki/Palettes',
'!palettes' => 'https://github.com/dkfans/FXInfo/wiki/Palettes',
'!music' => 'https://keeperfx.local/workshop/item/393/keeperfx-music',
'!wiki' => 'https://github.com/dkfans/keeperfx/wiki',
// DK2
'!openkeeper' => 'https://github.com/tonihele/OpenKeeper',
'!gim' => 'https://keeperklan.com/downloads.php?do=file&id=109',
'!ember' => 'https://github.com/DiaLight/Ember',
// Meme
'!walter' => ':flag_fr: :french_bread: :croissant: hon hon',
'!rap' => 'https://www.youtube.com/watch?v=vH67duada9E',
'!dkrap' => 'https://www.youtube.com/watch?v=vH67duada9E',
'!germanrap' => 'https://www.youtube.com/watch?v=xXkfyGQsjAk',
// Bugs
'!lvl10spellbug' => "> **Level 10 spell bug:** once a creature reaches level 10, creature spells such as Speed and Armour no longer work for its entire duration. Because of this, creatures who get these before level 10 become much weaker overall (e.g. level 9 Samurai are much more dangerous than level 10 ones). This happens because these spells are cast at the creature's experience level but spells only have 9 levels. The game looks for the level 10 value but ends up reading the next entry in the data (possibly the level 1 entry for the next spell). This affects many spells, but is particularly noticeable with Speed. Fixed in KeeperFX.",
'!overflowbug' => "> **Overflow of 8bit values:** several values in the game that would increase past 255 (or eight ones in binary) would continue counting back at 0. An example is the Dexterity value for units: when, for instance, a Horned Reaper would level up enough for his Dexterity to grow past 255, he would go from a unit that could deal out consistent damage to one that would hardly ever land a hit. This is one of the reasons level 6 Horned Reapers are more powerful than level 10 ones, the other being the abovementioned level 10 spell bug. Fixed in KeeperFX.",
];