Page 1 of 1

TR rebalanced.

PostPosted: Wednesday, 3rd April 2013, 21:42
by khalil
One of the threads on GDD said TR was overpowered because you ended up building a huge army, and that the monsters requiring corpses to heal would help.
I went and coded it up.
Basically, abominations don't heal over time, but if they combine with a crawling corpse, they heal for 1/10 of their health.
Here's a link:
https://crawl.develz.org/mantis/view.php?id=6871
If there's any problems, please let me know.
EDIT
I just found a problem. The abominations never stop absorbing corpses, even if at full health. I'll probably have to do something about that.
EDIT EDIT
Kay, problem's fixed now.

Re: TR rebalanced.

PostPosted: Thursday, 4th April 2013, 17:24
by galehar
If you want to contribute to crawl's development, you really need to learn the basics of git. There's some docs in docs/develop/git.
Once configured, creating a patch is incredibly simple.

  Code:
hack hack
git commit -a
git format-patch -1

Re: TR rebalanced.

PostPosted: Thursday, 4th April 2013, 19:06
by khalil
galehar wrote:If you want to contribute to crawl's development, you really need to learn the basics of git. There's some docs in docs/develop/git.
Once configured, creating a patch is incredibly simple.

  Code:
hack hack
git commit -a
git format-patch -1

I tried that when I was making my mummy memories thing and it kept throwing in changes that I didn't want to be bundled with it.

Re: TR rebalanced.

PostPosted: Thursday, 4th April 2013, 20:31
by galehar
khalil wrote:
galehar wrote:If you want to contribute to crawl's development, you really need to learn the basics of git. There's some docs in docs/develop/git.
Once configured, creating a patch is incredibly simple.

  Code:
hack hack
git commit -a
git format-patch -1

I tried that when I was making my mummy memories thing and it kept throwing in changes that I didn't want to be bundled with it.

In that case, either clean up your working directory with "git reset HEAD --hard" or add the files you want to commit with "git add file1 file2", then just "git commit". Or directly "git commit file1 file2".
Seriously, learn it. It's very very useful.

Re: TR rebalanced.

PostPosted: Thursday, 4th April 2013, 21:59
by khalil
galehar wrote:
khalil wrote:
galehar wrote:If you want to contribute to crawl's development, you really need to learn the basics of git. There's some docs in docs/develop/git.
Once configured, creating a patch is incredibly simple.

  Code:
hack hack
git commit -a
git format-patch -1

I tried that when I was making my mummy memories thing and it kept throwing in changes that I didn't want to be bundled with it.

In that case, either clean up your working directory with "git reset HEAD --hard" or add the files you want to commit with "git add file1 file2", then just "git commit". Or directly "git commit file1 file2".
Seriously, learn it. It's very very useful.

Thanks. I'll try.
At the very least grep will let me find stuff without pestering the fourms once I figure out how to use it.