├── .gitattributes ├── .gitignore ├── README.md └── images └── ravenfall_logo.png /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gitattributes 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ![Ravenfall Logo](/images/ravenfall_logo.png) 2 | Preliminary crafting guide / item documentation for Ravenfall, the Twitch Idle Game by [Zerratar](https://www.twitch.tv/zerratar). 3 | 4 | * [Training](#training) 5 | * [Crafting Overview](#crafting-overview) 6 | * [Preparing to Train Crafting](#preparing-to-train-crafting) 7 | * [Gathering Required Resources](#gathering-required-resources) 8 | * [Resource Gathering Tips](#resource-gathering-tips) 9 | * [How to Train Crafting](#how-to-train-crafting) 10 | * [Crafting Training Tips](#crafting-training-tips) 11 | * [Crafting Items](#crafting-items) 12 | * [Weapons](#weapons) 13 | * [Accessories](#accessories) 14 | * [Amulets](#amulets) 15 | * [Rings](#rings) 16 | * [Armor Pieces](#armor-pieces) 17 | * [Helmets](#helmets) 18 | * [Chests](#chests) 19 | * [Gloves](#gloves) 20 | * [Leggings](#leggings) 21 | * [Boots](#boots) 22 | * [Non-Craftable Items](#non-craftable-items) 23 | 24 | # Training 25 | Train a skill using `!train `. The following skills can be trained: 26 | - atk 27 | - def 28 | - str 29 | - crafting 30 | - woodcutting 31 | - mining 32 | - fishing 33 | - farming 34 | 35 | You can also train atk, def, and str simultaneously using `!train all`. 36 | 37 | # Crafting Overview 38 | Training the Crafting skill unlocks your ability to craft powerful weapons, armor, and other accessories. In order to train this skill, you must have wood and/or ore available. 39 | 40 | ## Preparing to Train Crafting 41 | You'll want a good supply of wood and ore before you begin training. As your Crafting level increases, the amount of wood and ore consumed during training also increases. For example, before reaching Crafting 20, only 1 wood and 1 ore are consumed every 2 seconds, while Crafting 90-99 requires 9 wood and 9 ore every 2 seconds. 42 | 43 | #### Gathering Required Resources 44 | 45 | Training the Mining and Woodcutting skills allows your character to gather these materials. The higher your skill level, the more resources your character can gather while training these professions, **and the more resources you receive from Raid Bosses.** 46 | ##### Mining Skill for Ore 47 | ``` 48 | !train mining 49 | ``` 50 | ##### Woodcutting Skill for Wood 51 | ``` 52 | !train woodcutting 53 | ``` 54 | 55 | #### Resource Gathering Tips 56 | * You should **always** join in on the fight with any Raid Bosses. No matter how you perform in the raid, you will still receive a lot of wood and ore if the boss is defeated. 57 | * Consider training Woodcutting and Mining to at least 20-25 in order to dramatically increase the amount of resources you get from Raid Bosses. 58 | 59 | ## How to Train Crafting 60 | When you have wood and ore on hand, you can begin training the Crafting skill. 61 | ``` 62 | !train crafting 63 | ``` 64 | 65 | 66 | 67 | #### Crafting Training Tips 68 | * While you can train with only wood or only ore on hand, you'll train twice as fast if you have both resources available. 69 | * The most powerful craftable items currently require a Crafting level of 99, but you can train up to 170. 70 | 71 | # Crafting Items 72 | You must be at the crafting table in order to craft items. You can do this by telling your character to train crafting. 73 | ``` 74 | !train crafting 75 | ``` 76 | **Important:** The game will attempt to create the most powerful item for which you meet all the requirements. For example, with Crafting 99 and Attack 1, crafting a weapon would only yield an Iron 2-Handed Sword. Make sure you meet the stat requirements. 77 | 78 | To check your character stats without waiting for the game to cycle to your character, you can use: 79 | ``` 80 | !stats 81 | ``` 82 | 83 | *Note:* If you meet the stat requirements but don't have enough Ore and/or Wood, then you'll receive a warning. You don't have to worry about it crafting a less powerful item because you ran out of resources. 84 | 85 | To check the amount of resources on hand, including wood and ore, without waiting for the game to cycle to your character, you can use: 86 | ``` 87 | !res 88 | ``` 89 | 90 | ## Craftable Items 91 | * [Weapons](#weapons) 92 | * [Accessories](#accessories) 93 | * [Amulets](#amulets) 94 | * [Rings](#rings) 95 | * [Armor Pieces](#armor-pieces) 96 | * [Helmets](#helmets) 97 | * [Chests](#chests) 98 | * [Gloves](#gloves) 99 | * [Leggings](#leggings) 100 | * [Boots](#boots) 101 | 102 | ### Weapons 103 | ``` 104 | !craft weapon 105 | ``` 106 | | Name | Aim Power | Weapon Power | Crafting Requirement | Attack Requirement | Ore | Wood | 107 | | --- | --- | --- |:---:|:---:| ---:| ---:| 108 | | Bronze Sword | 7 | 7 | 6 | 1 | 70 | 70 | 109 | | Bronze 2H Sword | 10 | 10 | 14 | 1 | 100 | 100 | 110 | | Iron 2H Sword | 14 | 14 | 29 | 1 | 1400 | 1400 | 111 | | Steel Sword | 16 | 16 | 36 | 5 | 160 | 160 | 112 | | Steel 2H Sword | 22 | 22 | 44 | 10 | 2200 | 2200 | 113 | | Mithril 2H Sword | 31 | 31 | 64 | 30 | 31000 | 31000 | 114 | | Adamantite 2H Sword | 44 | 44 | 84 | 50 | 44000 | 44000 | 115 | | Rune 2H Sword | 70 | 70 | 99 | 70 | 700000 | 700000 | 116 | | Dragon 2H Sword | 100 | 100 | 130 | 100 | 5000000 | 5000000 | 117 | | Ultima 2H Sword | 150 | 150 | 170 | 120 | 100000000 | 100000000 | 118 | 119 | [Back to Craftable Item Index](#craftable-items) 120 | 121 | ### Accessories 122 | 123 | #### Amulets 124 | ``` 125 | !craft amulet 126 | ``` 127 | | Name | Aim Power | Weapon Power | Armor Power | Crafting Requirement | Ore | Wood | 128 | | --- | --- | --- | --- |:---:| ---:| ---:| 129 | | Ring Amulet | 5 | 5 | 5 | 25 | 15000 | 15000 | 130 | | Ruby Amulet of Strength | - | 15 | - | 50 | 25000 | 25000 | 131 | | Dragon Amulet | 15 | 15 | 15 | 75 | 40000 | 40000 | 132 | 133 | [Back to Craftable Item Index](#craftable-items) 134 | 135 | #### Rings 136 | ``` 137 | !craft ring 138 | ``` 139 | | Name | Aim Power | Weapon Power | Armor Power | Crafting Requirement | Ore | Wood | 140 | | --- | --- | --- | --- |:---:| ---:| ---:| 141 | | Ring of Combat | 2 | 5 | 2 | 20 | 5000 | 5000 | 142 | | Ring of Combat II | 5 | 7 | 5 | 40 | 30000 | 30000 | 143 | | Ring of Combat III | 12 | 15 | 12 | 65 | 75000 | 75000 | 144 | 145 | [Back to Craftable Item Index](#craftable-items) 146 | 147 | ### Armor Pieces 148 | 149 | #### Helmets 150 | ``` 151 | !craft helm 152 | ``` 153 | | Name | Armor Power | Crafting Requirement | Defense Requirement | Ore | Wood | 154 | | --- | --- |:---:|:---:| ---:| ---:| 155 | | Bronze Helmet | 4 | 7 | 1 | 400 | 400 | 156 | | Iron Helmet | 6 | 22 | - | 600 | 600 | 157 | | Steel Helmet | 9 | 37 | 10 | 900 | 900 | 158 | | Mithril Helmet | 13 | 67 | 30 | 13000 | 13000 | 159 | | Adamantite Helmet | 19 | 77 | 50 | 19000 | 19000 | 160 | | Rune Helmet | 30 | 92 | 70 | 300000 | 300000 | 161 | 162 | [Back to Craftable Item Index](#craftable-items) 163 | 164 | #### Chests 165 | ``` 166 | !craft chest 167 | ``` 168 | | Name | Armor Power | Crafting Requirement | Defense Requirement | Ore | Wood | 169 | | --- | --- |:---:|:---:| ---:| ---:| 170 | | Bronze Chest | 14 | 18 | - | 1400 | 1400 | 171 | | Iron Chest | 20 | 33 | - | 15000 | 15000 | 172 | | Steel Chest | 31 | 48 | 10 | 31000 | 31000 | 173 | | Mithril Chest | 44 | 68 | 30 | 40000 | 40000 | 174 | | Adamantite Chest | 63 | 88 | 50 | 75000 | 75000 | 175 | | Rune Chest | 80 | 99 | 70 | 300000 | 300000 | 176 | 177 | [Back to Craftable Item Index](#craftable-items) 178 | 179 | #### Gloves 180 | ``` 181 | !craft gloves 182 | ``` 183 | | Name | Armor Power | Crafting Requirement | Defense Requirement | Ore | Wood | 184 | | --- | --- |:---:|:---:| ---:| ---:| 185 | | Bronze Gloves | 4 | 6 | - | 60 | 60 | 186 | | Iron Gloves | 7 | 18 | - | 200 | 200 | 187 | | Steel Gloves | 11 | 35 | 10 | 1000 | 1000 | 188 | | Mithril Gloves | 18 | 56 | 30 | 10000 | 10000 | 189 | | Adamantite Gloves | 26 | 76 | 50 | 30000 | 30000 | 190 | | Rune Gloves | 38 | 90 | 70 | 300000 | 300000 | 191 | 192 | [Back to Craftable Item Index](#craftable-items) 193 | 194 | #### Leggings 195 | ``` 196 | !craft leggings 197 | ``` 198 | | Name | Armor Power | Crafting Requirement | Defense Requirement | Ore | Wood | 199 | | --- | --- |:---:|:---:| ---:| ---:| 200 | | Bronze Leggings | 7 | 16 | - | 200 | 200 | 201 | | Iron Leggings | 10 | 31 | - | 300 | 300 | 202 | | Steel Leggings | 16 | 46 | 10 | 700 | 700 | 203 | | Mithril Leggings | 22 | 66 | 30 | 5000 | 5000 | 204 | | Adamantite Leggings | 31 | 86 | 50 | 75000 | 75000 | 205 | | Rune Leggings | 49 | 99 | 70 | 300000 | 300000 | 206 | 207 | [Back to Craftable Item Index](#craftable-items) 208 | 209 | #### Boots 210 | ``` 211 | !craft boots 212 | ``` 213 | | Name | Armor Power | Crafting Requirement | Defense Requirement | Ore | Wood | 214 | | --- | --- |:---:|:---:| ---:| ---:| 215 | | Bronze Boots | 6 | 5 | - | 50 | 50 | 216 | | Iron Boots | 10 | 17 | - | 500 | 500 | 217 | | Steel Boots | 14 | 34 | 10 | 1000 | 1000 | 218 | | Mithril Boots | 23 | 55 | 30 | 10000 | 10000 | 219 | | Adamantite Boots | 32 | 75 | 50 | 50000 | 50000 | 220 | | Rune Boots | 45 | 89 | 70 | 300000 | 300000 | 221 | 222 | [Back to Craftable Item Index](#craftable-items) 223 | 224 | ## Non-Craftable Items 225 | Some items are not craftable and are only available as random drops from a Raid Boss or through the power of JSON Editing by Zerratar. 226 | 227 | | Name | Aim Power | Weapon Power | Armor Power | Attack Requirement | Defense Requirement | Droppable | 228 | | --- | --- | --- | --- |:---:|:---:|:---:| 229 | | Black Boots | - | - | 19 | - | 20 | Yes | 230 | | Black Chest | - | - | 40 | - | 20 | Yes | 231 | | Black Gloves | - | - | 16 | - | 20 | Yes | 232 | | Black Helmet | - | - | 12 | - | 20 | Yes | 233 | | Black Leggings | - | - | 21 | - | 20 | Yes | 234 | | Black 2H Sword | 28 | 22 | - | 20 | - | Yes | 235 | | Ghrims Stick | 44 | 44 | - | - | - | No | 236 | | Ultimate Tuna Slapper | 44 | 44 | - | 30 | - | No | 237 | | Pickle Rick | 45 | 45 | - | - | - | No | 238 | | Pickle Rick II | 71 | 71 | - | 40 | - | No | 239 | | Polar Bear Pet | - | - | - | - | - | Yes | 240 | | Bear Pet | - | - | - | - | - | Yes | 241 | | Wolf Pet | - | - | - | - | - | Yes | 242 | | Red Panda Pet | - | - | - | - | - | Yes | 243 | | Deer Pet | - | - | - | - | - | Yes | 244 | | Fox Pet | - | - | - | - | - | Yes | -------------------------------------------------------------------------------- /images/ravenfall_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainstack/Ravenfall-Docs/98d1b5f0efa8a05bda125afda246422c4d8b30d9/images/ravenfall_logo.png --------------------------------------------------------------------------------