|
FullResReddit has moved to its own full GitHub repository. I sincerely hope that this does not cause too much inconvenience, |
This file contains hidden or 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
| classname=org.requiem.mods.dragonrider.Initiator | |
| classpath=DragonRider.jar | |
| sharedClassLoader=false | |
| # The RED and BLUE drakes will look strange when ridden. This is due to whoever made the model for them didn't add in the seat positions for players. | |
| # A list of item ID's for Items_Butchered can be found here: https://pastebin.com/MM53gSJA | |
| # A list of Creature Types can be found here: https://pastebin.com/3Tu7GRh7 |
This file contains hidden or 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
| backpack, leather = 1 | |
| satchel, cotton = 2 | |
| small axe, birchwood = 3 | |
| shield, iron = 4 | |
| potion = 5 | |
| green apple = 6 | |
| hatchet, birchwood = 7 | |
| carving knife, iron = 8 | |
| log = 9 | |
| pickaxe, iron = 20 |
This file contains hidden or 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
| SENTINEL = 0 // will not move | |
| TRADER = 1 // acts as a trader | |
| MOVERANDOM = 2 | |
| ANIMAL = 3 // can be groomed | |
| INVULNERABLE = 4 // cannot kill | |
| NPC_TRADER = 5 // acts as a trader | |
| AGG_HUMAN = 6 // attacks all humans | |
| MOVE_LOCAL = 7 // stays within a radius of where it was spawned | |
| MOVE_GLOBAL = 8 // moves all over the map | |
| GRAZER = 9 // eats grass like horses do |
This file contains hidden or 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
| ARMOUR_LEATHER = 1 | |
| ARMOUR_STUDDED = 2 | |
| ARMOUR_CHAIN = 3 | |
| ARMOUR_PLATE = 4 | |
| ARMOUR_RING = 5 | |
| ARMOUR_CLOTH = 6 | |
| ARMOUR_SCALE = 7 | |
| ARMOUR_SPLINT = 8 | |
| ARMOUR_LEATHER_DRAGON = 9 | |
| ARMOUR_SCALE_DRAGON = 10 |
Ada Cohen @ reddit ⠀ Ada Cohen @ printables ⠀ pdf
This file contains hidden or 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
| // ==UserScript== | |
| // @name Hide AI Overview in Google Search | |
| // @namespace https://gist.github.com/jesterjunk/ | |
| // @homepage https://gist.github.com/jesterjunk/760d8bd2e9e6fc2ed82a567bd40fb9dc | |
| // @version 0 | |
| // @description Hides the AI Overview section on Google Search results. | |
| // @author a speck of dust on a tiny rock flying through a vast expanse of the universe | |
| // @match https://www.google.com/search* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com | |
| // @run-at document-start |