Hello there! It's deadleaf here. I’m an introvert hobbyist programmer with interest in crypto and NFT gaming recently. It’s been quite an experience joining splinterlands. The community is amazing and very helpful. I’ve been learning a lot along the path. I tend to analyze things before getting into them. My recent post “How many battles before ECR (almost) runs out?” was an attempt to analyze splinterlands energy capture rate drainage with number of battles and impact of starting ECR on its drainage time.
As I started with this game, I did not know much of its mechanics, soon I realized that I’d need some collection power before I can get any DEC from wins. Headed over to @splinterlands official discord server and got my first 1000 collection power delegated from @thegcc (Thanks :)). This thing really made an impression of community support.
It really motivated me and still motivates to do something for the splinterlands community, which paved the way to my first post. No copyright violations have been made in making the post @indayclara :).
The post was made as:
- Taking ECR consumption rate from splinterlands documentation.
- Writing a python snippet for fast calculation:
starting_ecr = 100
for battle in range(5000):
consumed_ecr = (starting_ecr / 100) * 1
remaining_ecr = starting_ecr - consumed_ecr
stat = f"Battles = {battle + 1}, Remaing ECR = {remaining_ecr}"
print(stat)
starting_ecr = starting_ecr - consumed_ecr
# / ... /
You can calculate ECR drainage for your given battles by changing range(battles_you_want)
- putting all together in excel & word
Would love to do my best to make this community grow and flourish, Best wishes for this amazing community!
Thanks to @lovesniper from @ocd for positive encouragement for writing this introvert introduction xD.