03-10-2015, 07:50 PM
You can now buy upgrades in your town to allow the use of Granite, Diorite, and Andesite in the Trommel.
Just something I'm working on tonight. Of course I still need to balance things out and there is much to do in the code still. This should give you an idea of how the Trommel is going to work soon, though.
Edit:
I just got this finished, tested, and implemented. The prices adjusted a bit.
Each of these upgrades allow you to put the respective stone types in the Trommel.
I won't be posting the adjusted rates, as they're pretty much the same as gravel.
Just something I'm working on tonight. Of course I still need to balance things out and there is much to do in the code still. This should give you an idea of how the Trommel is going to work soon, though.
Edit:
I just got this finished, tested, and implemented. The prices adjusted a bit.
Code:
- id: 'upgrade_trommel_material_granite'
name: 'Upgrade Trommel Level 2 (Granite)'
action: 'set_trommel_level, 2'
cost: 5000.0
require_upgrade:
require_tech: 'tech_masonry'
require_structure: 's_trommel'
category: 'trommel'
- id: 'upgrade_trommel_material_diorite'
name: 'Upgrade Trommel Level 3 (Diorite)'
action: 'set_trommel_level, 3'
cost: 10000.0
require_upgrade: 'upgrade_trommel_material_granite'
require_tech: 'tech_advanced_masonry'
require_structure: 's_trommel'
category: 'trommel'
- id: 'upgrade_trommel_level_andesite'
name: 'Upgrade Trommel Level 4 (Andesite)'
action: 'set_trommel_level, 4'
cost: 20000.0
require_upgrade: 'upgrade_trommel_material_diorite'
require_tech: 'tech_alloys'
require_structure: 's_trommel'
category: 'trommel'
Each of these upgrades allow you to put the respective stone types in the Trommel.
I won't be posting the adjusted rates, as they're pretty much the same as gravel.