Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Sachlyric

Pages: [1]
1
Touhou Puppet Dance Performance / Re: Stat mechanics
« on: January 04, 2015, 02:12:51 AM »
Yeah, sorry, was using an old version of the puppet name translations. The typos and naming inconsistencies should be fixed now. Thanks for letting me know.

2
Touhou Puppet Dance Performance / Re: Stat mechanics
« on: January 02, 2015, 01:30:06 AM »
This is what I have so far:
http://tpdp.supersanctuary.net/wiki/User:Sachlyric#DollData.dbs
Comparing with yours it looks like I may have swapped ability 1 and 2 around but whatever. I suspect most of the unknown data probably has something to do with the reincarnation system, which I haven't gotten to yet.

Edit: I will say that the last 100 bytes in the data structure appear to be dummy data for a 4th style. Possibly something to be added in future patches?

3
Touhou Puppet Dance Performance / Stat mechanics
« on: December 29, 2014, 11:39:28 PM »
Here's what I've figured out about the stat mechanics for the full version of this game after playing around with Cheat Engine. I don't claim to have exhaustively tested everything here but it should be mostly correct. The stat mechanics are very similar to their Pokemon counterparts so I'll gloss over some details.

Stat formula
HP: [(2*BaseStat + 2*IV + EV) * Level / 100] + Level + 10
Other stats: {[(2*BaseStat + 2*IV + EV) * Level / 100] + 5} * NatureMod
NatureMod = 1.1 if nature boosts stat, 1 otherwise.
Round down whenever possible.


Base stats
These are hard-coded stat values for each doll and each style. I've compiled all of the base stats here:
TPP Performance Base Stats
Each doll is listed in their internal game order, which appears to be in roughly chronological order. The Midboss dolls seem to be dummy data if anything, but I included it just because. If you catch any mistakes in the base stats, please let me know.

IVs
Otherwise known as the letter grades next to each stat on a doll's status screen. Internally, IVs range from 0 to 15, with E- corresponding to 0 and S corresponding to 15. Each increase in rank corresponds to an increase in value by 1. In short:

Letter rank  IV
S  15
A+  14
A  13
A-  12
B+  11
B  10
B-  9
C+  8
C  7
C-  6
D+  5
D  4
D-  3
E+  2
E  1
E-  0

EVs
Otherwise known as the PP you use to boost your doll's stats. Every point of PP spent corresponds to 1 EV.

Note that you can only have at most 64 EVs for a particular stat, and 130 EVs across all stats for a particular doll.

Natures
Otherwise known as that thing below your doll's typing and above its original trainer name on the status screen. Unlike in Pokemon, natures never lower stats, so there are only 5 natures available.

Nature   Boosted Stat
Red   Focus Attack
Blue   Focus Defense
Black   Spread Attack
White   Spread Defense
Green   Speed

Pages: [1]