Awesome! We have the config and we can access it!
Now, let’s make it functional.
The easy way would be to copy and tweak the structure from
https://v2.coderslang.com/evil-empire-config
A bit harder approach is to write everything yourself.
Whatever you choose, in the next couple of stages we’ll test if the structure of your config is correct.
Producers is an array of objects.
Each object represents an individual producer that has following fields:
id
: a unique number which is used to identify a producertitle
: a string that sets producers namebaseCost
: a number, the price of the first producer of this typegrowthRate
: a number, the multiplier that increases the cost of the next producer of this typebaseProduction
: a number, the amount of gold that producers of this type will makepictureURL
: a string, an https link to the producer picture in.svg
format
Add at least 5 objects to the producers array, which should have all the properties listed above.
This task is part of the Full-Stack JavaScript Course.
If you have any issues with it, you can ask for community help below the post.
Feel free to help others if you’ve already solved the task.