create account

Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes! by terracore

View this thread on: hive.blogpeakd.comecency.com
· @terracore · (edited)
$98.68
Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!
![battle_post.png](https://files.peakd.com/file/peakd-hive/terracore/243MFb7jDw9LHQQQocr3iPSGT7rj7NjWYLo2aL9ULyjqFwa5GG9R59AjYQSPuVf6nRdzE.png)

**Hey Fellow Citizens!**

Few made it through the weekend & all the ALPHA systems seem to be running fairly smooth now, a few bugs here and there but nothing major so I have been able to work on some fun things & really take a look at the current state of the game, the balance of early gameplay, and get some feedback from the community which has been super helpful. 

One of the largest flaws with the game systems now is Staked SCRAP has not really been useful past just having enough room for the SCRAP you can get to attacks...and FAVOR is currently way overpowered. The end goal here is to allow users to be able to choose how they want to build their character out and still be competitive, it should not be you need to Build X,Y,Z way or you will be at a disadvantage.

<br>

## Breaking Down the Changes:
-------
#### STAKED SCRAP
Staked Scrap now also serves a secondary function that is defense called toughness, the bigger your stash the more resources you can hold & the tougher you become. This toughness will allow you to dodge attacks more easily.

This is number is rolled first when someone attacks you and gives you a chance to dodge their attack entirely! 

```
function checkDoge(_target) {
    // Calculate player's toughness based on scrap staked
    var toughness = 0.001 * _target.stakedScrap;
    // Generate random number between 1 and 100
    var dodgeRoll = Math.floor(Math.random() * 100) + 1;
    // Check if toughness is greater than 25%
    if (toughness > 25) {
        // Calculate the excess toughness and make it 2x harder to gain more toughness
        var excessToughness = toughness - 25;
        dodgeRoll = 25 + (dodgeRoll * (1 + (excessToughness / 2)));
        // Check if toughness is greater than 50%
        if (toughness > 50) {
            // Calculate the excess toughness and make it 4x harder to gain more toughness
            excessToughness = toughness - 50;
            dodgeRoll = 50 + (dodgeRoll * (1 + (excessToughness / 2)));
        }
        // Check if toughness is greater than 75%
        if (toughness > 75) {
            // Calculate the excess toughness and make it 6x harder to gain more toughness
            excessToughness = toughness - 75;
            dodgeRoll = 75 + (dodgeRoll * (1 + (excessToughness / 2)));
        }
    }
    // Check if dodge roll is less than toughness
    if (dodgeRoll < toughness) {
        return true;
    } else {
        return false;
    }
}

```

-------------
<br>
#### FAVOR
There is  a new roll system based on favor that will use the code below to determine an rng factor based on the amount of favor you have.

<br>

First it check the attack damage vs the opponents Defense to get a base attack damage # this has been normalized to reflect the game better and is now divided by 10

```
var scrapToSteal = (user.damage - target.defense)/10;

```
<br>

Then a RNG roll is made to determine your chance of critical hitting, this is all based on your FAVOR. This scales flat until you hit 25% to crit then becomes harder to gain after that.

```
async function rollAttack(_player) {
    var favor = 0.001 * _player.favor;
    console.log("Favor: " + favor);
    // Check if favor is greater than 25%
    if (favor > 25) {
        // Calculate the excess favor and make it 2x harder to gain more favor
        var excessFavor = favor - 25;
        favor = 25 + (favor * (1 + (excessFavor / 2)));
        // Check if favor is greater than 50%
        if (favor > 50) {
            // Calculate the excess favor and make it 4x harder to gain more favor
            excessFavor = favor - 50;
            favor = 50 + (favor * (1 + (excessFavor / 2)));
        }
        // Check if favor is greater than 75%
        if (favor > 75) {
            // Calculate the excess favor and make it 6x harder to gain more favor
            excessFavor = favor - 75;
            favor = 75 + (favor * (1 + (excessFavor / 2)));
        }
    }
    //roll a random number between favor and 100
    var steal = Math.floor(Math.random() * (100 - favor + 1) + favor);
    console.log("Steal Roll: " + steal + " Favor: " + favor);
    //check if steal is greater than 100
    if (steal > 100) {
        steal = 100;
    }
    //return steal
    return steal;
}
```

<br>

We will be adding the most info we can regarding these changes to the wiki so that people can do a deep dive into the new system this weekend!


We are excited about these changes & hope to bring the best balanced experience to the game & keep creating more utility for $SCRAP in the future, this is the lifeblood of the game & will be needed for all upgrades and future additions to the game.


<br>
That's it for today, all the links are below be sure to follow us to here what we are working on and follow the progress!
<br>

----

**Check Out our Wiki:**
https://cryptognome.gitbook.io/terracore/
**Follow us on Twitter:**
https://twitter.com/terracoregame
**Follow us on PeakD:**
https://peakd.com/@terracore
**Come join the discord to learn more:**
https://discord.gg/dgJU6RqMv4
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 267 others
👎  , , , , , , ,
properties (23)
authorterracore
permlinkterracore-devlog-12-battleground-updates-and-major-game-balance-changes
categoryterracore
json_metadata{"app":"peakd/2023.3.3","format":"markdown","image":["https://files.peakd.com/file/peakd-hive/terracore/243MFb7jDw9LHQQQocr3iPSGT7rj7NjWYLo2aL9ULyjqFwa5GG9R59AjYQSPuVf6nRdzE.png"],"tags":["terracore","hive","hivegaming","hivegc","gaming","leo","pizza","oneup"],"users":["terracore"]}
created2023-03-19 14:00:00
last_update2023-03-20 17:07:06
depth0
children22
last_payout2023-03-26 14:00:00
cashout_time1969-12-31 23:59:59
total_payout_value49.370 HBD
curator_payout_value49.306 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,190
author_reputation31,066,352,787,470
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,764,762
net_rshares188,767,841,956,323
author_curate_reward""
vote details (339)
@amiableamara ·
I am quiet lost here, where and how can i play this game ?
properties (22)
authoramiableamara
permlinkre-terracore-2023322t223348160z
categoryterracore
json_metadata{"tags":["terracore","hive","hivegaming","hivegc","gaming","leo","pizza","oneup"],"app":"ecency/3.0.31-vision","format":"markdown+html"}
created2023-03-22 21:33:48
last_update2023-03-22 21:33:48
depth1
children0
last_payout2023-03-29 21:33:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation23,312,222,271,832
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,873,486
net_rshares0
@forykw · (edited)
HUmmm... levels will be,

0-25k SCRAP staked = % toughness = `0.001 * _target.stakedScrap`
> This will be linear to the staked SCRAP until a player reaches 25k staked SCRAP. But for dodges to start occurring, you will need at least more than 1000 SCRAP staked.

Then for the rest of the levels:
25-50k SCRAP staked = 25-50% toughness (non-linear evolution)
50-75k SCRAP staked = 50-75% toughness (non-linear evolution)
+75k SCRAP staked = 75%-100% toughness (non-linear evolution)

0-25k SCRAP favor = extra % stole = `0.001 * _player.favor`
> Here if I understood it right, the more favor you have the more you will steal from your critical hitting, on top of your base steal? @terracore can correct me on this one.

Then for the rest of the levels:
25-50k SCRAP favor = 25-50% extra steal (non-linear evolution)
50-75k SCRAP favor  = 50-75% extra steal (non-linear evolution)
+75k SCRAP favor = 75%-100% extra steal (non-linear evolution)

Right?

If so this will be quite a LOT 🤣 for the time being, due to the current circulating token! 😎 at least for dodging... but for critical hits, because they are floating numbers you will always have a little extra from your critical hits. The more favor you have the more extra you get (potentially). Don't forget that it all depend on random rolls within the limits.
properties (22)
authorforykw
permlinkre-terracore-rrs8n7
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-19 19:26:00
last_update2023-03-20 00:09:21
depth1
children2
last_payout2023-03-26 19:26:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,314
author_reputation71,301,874,914,664
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,771,490
net_rshares0
@terracore ·
No they are floats, and below 25% it works like this ``var toughness = 0.001 * _target.stakedScrap;``
properties (22)
authorterracore
permlinkre-forykw-rrs9sp
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-19 19:50:51
last_update2023-03-19 19:50:51
depth2
children1
last_payout2023-03-26 19:50:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation31,066,352,787,470
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,772,013
net_rshares0
@forykw ·
Ah ok, then it explains. I am going to correct my comment then. Thanks
properties (22)
authorforykw
permlinkre-terracore-rrsk23
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-19 23:32:33
last_update2023-03-19 23:32:33
depth3
children0
last_payout2023-03-26 23:32:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation71,301,874,914,664
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,777,137
net_rshares0
@fragmentedskulls · (edited)
Wrong account 
properties (22)
authorfragmentedskulls
permlinkre-terracore-rrru0z
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-19 14:10:12
last_update2023-03-19 14:11:27
depth1
children2
last_payout2023-03-26 14:10:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation34,266,865
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,764,993
net_rshares0
@pizzabot ·
@fragmentedskulls, sorry! You need more to stake more $PIZZA to use this command.

The minimum requirement is 20.0 PIZZA staked.

More $PIZZA is available from [Hive-Engine](https://hive-engine.com/?p=market&t=PIZZA) or [Tribaldex](https://tribaldex.com/trade/PIZZA)
properties (22)
authorpizzabot
permlinkre-re-terracore-rrru0z-20230319t141024z
categoryterracore
json_metadata"{"app": "pizzabot"}"
created2023-03-19 14:10:24
last_update2023-03-19 14:10:24
depth2
children0
last_payout2023-03-26 14:10:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length267
author_reputation6,145,410,307,915
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,765,002
net_rshares0
@thepimpdistrict ·
<center>
<sup>Dafuq @fragmentedskulls, you gotta stake more <b>PIMP</b> Tokens!</sup>
<sup>You need <b>Stake</b> at least <b>1000.000</b> <b>PIMP</b> power.</sup>
<sup>(We will not send this error message for 24 hours).</sup>

<img src="https://images.hive.blog/DQmWH3SUfgfADfqzyyTQ1WhpeA3tS5PNo8gQYGeTzYVpqmA/PIMP.png" alt="pimp_logo">

---
<sup>[Read about some PIMP Shit](https://peakd.com/hive-111011/@enginewitty/pimp-v30) or [Look for the PIMP District](https://discord.gg/VrDubcEqd4)</sup>
</center>
properties (22)
authorthepimpdistrict
permlink20230319t141023352z
categoryterracore
json_metadata{"tags":["pimp","tokenpimp","pimpbot"],"app":"pimp-bot/4.0","format":"markdown"}
created2023-03-19 14:10:24
last_update2023-03-19 14:10:24
depth2
children0
last_payout2023-03-26 14:10:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length515
author_reputation11,556,394,981,978
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,765,000
net_rshares0
@hivebuzz ·
Congratulations @terracore! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@terracore/upvoted.png?202303180356"></td><td>You received more than 1250 upvotes.<br>Your next target is to reach 1500 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@terracore) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out our last posts:**
<table><tr><td><a href="/hive-139531/@hivebuzz/proposal-2324"><img src="https://images.hive.blog/64x128/https://i.imgur.com/RNIZ1N6.png"></a></td><td><a href="/hive-139531/@hivebuzz/proposal-2324">The Hive Gamification Proposal</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22248%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/248)!
properties (22)
authorhivebuzz
permlinknotify-terracore-20230319t141220
categoryterracore
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2023-03-19 14:12:21
last_update2023-03-19 14:12:21
depth1
children0
last_payout2023-03-26 14:12:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,105
author_reputation368,219,185,896,356
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,765,049
net_rshares0
@hivebuzz ·
<center>[![](https://images.hive.blog/175x175/https://hivebuzz.me/api/level/terracore?202303192343)](https://hivebuzz.me/@terracore)
**Congratulations @terracore**!
You raised your level and are now a **Dolphin**!</center>

**Check out our last posts:**
<table><tr><td><a href="/hive-139531/@hivebuzz/proposal-2324"><img src="https://images.hive.blog/64x128/https://i.imgur.com/RNIZ1N6.png"></a></td><td><a href="/hive-139531/@hivebuzz/proposal-2324">The Hive Gamification Proposal</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22248%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/248)!
properties (22)
authorhivebuzz
permlinknotify-terracore-20230320t001031
categoryterracore
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2023-03-20 00:10:33
last_update2023-03-20 00:10:33
depth1
children0
last_payout2023-03-27 00:10:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length699
author_reputation368,219,185,896,356
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,777,967
net_rshares0
@hurtlocker ·
It's awesome theses updates keep on coming! Balance changes make sense to me! Really like the critical hit component as well.

!PIZZA
!PIMP
!PGM

properties (22)
authorhurtlocker
permlinkre-terracore-rrrudh
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-19 14:17:42
last_update2023-03-19 14:17:42
depth1
children2
last_payout2023-03-26 14:17:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length146
author_reputation8,488,886,722,959
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,765,167
net_rshares0
@pgm-curator ·
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS  - 0.05 DEC - 1 SBT - 0.1 THG - 0.000001 SQM - 0.1 BUDS tokens to  @hurtlocker</center>

<center><sub>remaining commands 4</sub></center>


**BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!**

The tokens that the command sends are: 0.1 PGM-0.1 LVL-0.1 THGAMING-0.05 DEC-15 SBT-1 STARBITS-[0.00000001 BTC (SWAP.BTC) only if you have 2500 PGM in stake or more ]

5000 PGM IN STAKE = 2x rewards! 

![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](https://discord.gg/KCvuNTEjWw)


Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d)

Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn)



<sub>I'm a bot, if you want a hand ask @ zottone444</sub>

***
properties (22)
authorpgm-curator
permlinkpgm-curatorhurtlocker1679235482201
categoryterracore
json_metadata{"tags":[],"app":"pgm/0.1","format":"markdown+html"}
created2023-03-19 14:18:03
last_update2023-03-19 14:18:03
depth2
children0
last_payout2023-03-26 14:18:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,906
author_reputation3,409,490,822,394
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,765,176
net_rshares0
@thepimpdistrict ·
<center>
<sup>You must be killin' it out here!</sup>
<sup>@hurtlocker just slapped you with <b>1.000</b> <b>PIMP</b>, @terracore.</sup>
<sup>You earned <b>1.000</b> <b>PIMP</b> for the strong hand.</sup>
<sup>They're getting a workout and slapped <b>1/1</b> possible people today.</sup>

<img src="https://images.hive.blog/DQmWH3SUfgfADfqzyyTQ1WhpeA3tS5PNo8gQYGeTzYVpqmA/PIMP.png" alt="pimp_logo">

---
<sup>[Read about some PIMP Shit](https://peakd.com/hive-111011/@enginewitty/pimp-v30) or [Look for the PIMP District](https://discord.gg/VrDubcEqd4)</sup>
</center>
properties (22)
authorthepimpdistrict
permlink20230319t141753410z
categoryterracore
json_metadata{"tags":["pimp","tokenpimp","pimpbot"],"app":"pimp-bot/4.0","format":"markdown"}
created2023-03-19 14:17:51
last_update2023-03-19 14:17:51
depth2
children0
last_payout2023-03-26 14:17:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length579
author_reputation11,556,394,981,978
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,765,172
net_rshares0
@jfuji ·
Very cool seeing all this stuff evolve. One clarity note on language used:

> 6x harder to gain more ___

This makes it sound like it will be harder to stake or spend tokens on either stash or favor. Does it mean to refer to an idea that your toughness/crit chances have diminishing returns after each break point (25, 50, 75) etc.? Because the thing that's "harder to gain" are these two outcomes, not the favor/stash itself (unless I've misunderstood).
properties (22)
authorjfuji
permlinkre-terracore-2023319t10916843z
categoryterracore
json_metadata{"tags":["terracore","hive","hivegaming","hivegc","gaming","leo","pizza","oneup"],"app":"ecency/3.0.31-vision","format":"markdown+html"}
created2023-03-19 14:09:15
last_update2023-03-19 14:09:15
depth1
children0
last_payout2023-03-26 14:09:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length454
author_reputation153,408,581,828,297
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,764,972
net_rshares0
@mypathtofire ·
Great update! Nice one!
properties (22)
authormypathtofire
permlinkre-terracore-rrruie
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-19 14:20:42
last_update2023-03-19 14:20:42
depth1
children0
last_payout2023-03-26 14:20:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation500,776,058,360,913
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,765,233
net_rshares0
@pizzabot · (edited)
RE: Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!
<center>PIZZA! PIZZA! 
 @terracore! The Hive.Pizza team manually curated this post.

PIZZA Holders sent <strong>$PIZZA</strong> tips in this post's comments:
hurtlocker tipped terracore (x1)


<sub>Learn more at https://hive.pizza.</sub></center>
properties (22)
authorpizzabot
permlinkre-terracore-devlog-12-battleground-updates-and-major-game-balance-changes-20230319t141749z
categoryterracore
json_metadata"{"app": "pizzabot"}"
created2023-03-19 14:17:48
last_update2023-03-19 14:24:15
depth1
children0
last_payout2023-03-26 14:17:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length246
author_reputation6,145,410,307,915
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,765,170
net_rshares0
@poshtoken ·
https://twitter.com/1505188766666960901/status/1637455198011490304
<sub> The rewards earned on this comment will go directly to the people sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
properties (22)
authorposhtoken
permlinkre-terracore-terracore-devlog-12-battleground-updates-and-major-140682352
categoryterracore
json_metadata"{"app":"Poshtoken 0.0.1","payoutToUser":[]}"
created2023-03-19 14:05:24
last_update2023-03-19 14:05:24
depth1
children0
last_payout2023-03-26 14:05:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length254
author_reputation3,940,239,195,573,432
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries
0.
accountnomnomnomnom
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id121,764,892
net_rshares0
@prinzvalium ·
Is this correkt? 

![image.png](https://files.peakd.com/file/peakd-hive/prinzvalium/23wgoZp9qC4vUvg6Jn11xx9xSbAyUG4KWJtQxPT2WaqSFozyrWaUCeoA1kSZp4tbC8QHL.png)

e.g: 
scrapToSteal = 0.1
user.scrap = 5
staked = 5

-> scrapToSteal = 1
properties (22)
authorprinzvalium
permlinkre-terracore-rrtaii
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-20 09:03:06
last_update2023-03-20 09:03:06
depth1
children0
last_payout2023-03-27 09:03:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length232
author_reputation94,983,278,777,634
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,786,891
net_rshares0
@soltecno ·
It looks very nice. I don't understand the technical details, that's true. But I do see that they are taking care to get the game running smoothly, and that's great.
properties (22)
authorsoltecno
permlinkre-terracore-2023324t11437101z
categoryterracore
json_metadata{"tags":["terracore","hive","hivegaming","hivegc","gaming","leo","pizza","oneup"],"app":"ecency/3.0.31-vision","format":"markdown+html"}
created2023-03-24 15:42:48
last_update2023-03-24 15:42:48
depth1
children0
last_payout2023-03-31 15:42:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation75,666,245,279,070
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,929,966
net_rshares0
@speedtuning ·
very good, thanks for bringing more utility to keep SCRAP in stake 😄
👍  
properties (23)
authorspeedtuning
permlinkre-terracore-rrrzaz
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-19 16:04:12
last_update2023-03-19 16:04:12
depth1
children0
last_payout2023-03-26 16:04:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation23,847,005,621,664
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,767,264
net_rshares1,143,034,375
author_curate_reward""
vote details (1)
@thesphinx ·
Quick note to update the WIKI as these balance changes are now out of date and using the k= 0.025 values for everything.
properties (22)
authorthesphinx
permlinkre-terracore-s0tza6
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.8.1"}
created2023-09-11 17:01:21
last_update2023-09-11 17:01:21
depth1
children0
last_payout2023-09-18 17:01:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation21,094,865
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id127,055,036
net_rshares0
@wrestorgonline ·
# Coming for everyones SCRAP like Macho Man coming into a promo
![untitled.gif](https://media.tenor.com/Yg07T-qaUUMAAAAC/macho-man.gif)
properties (22)
authorwrestorgonline
permlinkre-terracore-rrscbm
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-19 20:45:24
last_update2023-03-19 20:45:24
depth1
children1
last_payout2023-03-26 20:45:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation104,452,623,855,944
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,773,338
net_rshares0
@terracore ·
$0.36
![untitled.gif](https://media.tenor.com/ObNuLpYCOb8AAAAC/oh-yeah-randy-savage.gif)
👍  
properties (23)
authorterracore
permlinkre-wrestorgonline-rrse08
categoryterracore
json_metadata{"tags":["terracore"],"app":"peakd/2023.3.3"}
created2023-03-19 21:21:45
last_update2023-03-19 21:21:45
depth2
children0
last_payout2023-03-26 21:21:45
cashout_time1969-12-31 23:59:59
total_payout_value0.178 HBD
curator_payout_value0.178 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation31,066,352,787,470
root_title"Terracore: Devlog #12 - Battleground Updates & Major Game Balance Changes!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,774,166
net_rshares676,114,497,823
author_curate_reward""
vote details (1)