The Wiki for Tale 6 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.
If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.
Difference between revisions of "User:Herberti"
From ATITD6
Jump to navigationJump to search| Line 4: | Line 4: | ||
im interested in cooking, herbs, sshrooms, atm my main focus is to set up a nice compound  | im interested in cooking, herbs, sshrooms, atm my main focus is to set up a nice compound  | ||
| + | |||
| + | <pre>  | ||
| + | cooking:  | ||
| + | |||
| + | Q   	  Base         		   Add                  STR DEX END SPD CON FOC PER  | ||
| + | |||
| + | OR 	6 carrots		1 onions 		  0   0   0  -8   0  -8   8 	  38:37  | ||
| + | OR 	6 carrots		2 onions		  0   0   0  -8   0  -8   8 	  57:46  | ||
| + | OR 	6 carrots		3 onions		 -2   0   0  -7  -2  -8   8 	1:12:39   | ||
| + | OR 	6 carrots		4 onions		 -7   0   0  -4  -7  -8   8 	1:24:34  | ||
| + | OR 	6 carrots		5 onions		 -9   0   0   5  -9  -8   8	1:34:19  | ||
| + | OR 	6      			6                         -   -   -   -   -   -   -     -  -  -  | ||
| + | OR 	6 onions		5 carrot		-11   0   0   9 -11  -6   6	  54:49  | ||
| + | OR 	6 onions		4 carrot		-11   0   0   8 -11  -8   8 	  49:49  | ||
| + | OR 	6 onions		3 carrot		-11   0   0   9 -11  -7   7 	  43:42  | ||
| + | OR 	6 onions		2 carrot		-11   0   0  10 -11  -5   5 	  36:02  | ||
| + | OR 	6 onions		1 carrot		-11   0   0  11 -11  -2   2 	  26:12   | ||
| + | |||
| + | |||
| + | spd = SPD  | ||
| + | R = result  | ||
| + | A = ingredient A, here carrots  | ||
| + | B = ingredient B, here onions  | ||
| + | stat0 = hard coded stats of the ingredient  | ||
| + | a = Amount of ingredient  | ||
| + | p = potency of ingredient  | ||
| + | |||
| + | approach:   | ||
| + | spdR = aA x pA x stat0A + aB x pB x stat0B  | ||
| + | |||
| + | 6A # 1B: -8 =  6 x pA x stat0A + 1 x pB x stat0B  | ||
| + | 6A # 5B:  5 =  6 x pA x stat0A + 5 x pB x stat0B  | ||
| + | (solve the equation: subtract the 2nd row from the first one)  | ||
| + |         -13 =      0           -4 x pB x stat0B  | ||
| + | |||
| + | pB x spd0B =  13/4         | ||
| + | |||
| + |  -40 =  30 x pA x stat0A + 5 x pB x stat0B  | ||
| + |   -5 =  -6 x pA x stat0A - 5 x pB x stat0B  | ||
| + | (solve the equation:  5 x first equation - 2nd equation)  | ||
| + |  -45 = 24 x pA x statA0  | ||
| + | |||
| + | pA x spd0A = -45/24 = -1,875  | ||
| + | |||
| + | |||
| + | |||
| + | 6A # 1B:  -8 =  6 x pA x stat0A + 1 x pB x stat0B  | ||
| + | 6B # 1A:  11 =  1 x pA x stat0A + 6 x pB x stat0B  | ||
| + | |||
| + |          -42 = 36 x pA x stat0A + 6 x pB x stat0B  | ||
| + |  	 -11 =  -1 x pA x stat0A - 6 x pB x stat0B  | ||
| + |          -53 = 35 x pA x stat0A + 0  | ||
| + | |||
| + | pA x spd0A = -53/35  = -1,514   hmmmmm not really -1,875 myabe because of rounding ?  | ||
| + | |||
| + | |||
| + | the same for str:  | ||
| + | 6A # 1B:  0 =  6 x pA x stat0A + 1 x pB x stat0B  | ||
| + | 6A # 5B: -9 =  6 x pA x stat0A + 5 x pB x stat0B  | ||
| + | |||
| + | 	  0 =  6 x pA x stat0A + 1 x pB x stat0B  | ||
| + | 	  9 = -6 x pA x stat0A - 5 x pB x stat0B  | ||
| + |           9 =   0              -4 pbstr0B  | ||
| + | pB x str0B = -9/4           | ||
| + | |||
| + |    	  0 = -30 x pA x stat0A - 5 x pB x stat0B  | ||
| + |   	 -9 =  6 x pA x stat0A + 5 x pB x stat0B  | ||
| + |          -9 = -24 xpAstat0A   | ||
| + | |||
| + | pA x str0A = -9 / 24 = 0,375  | ||
| + | |||
| + | |||
| + | pA x spd0A = -1,875  | ||
| + | pA x str0A =  0,375    damm, i want to seperate pA  need a other way...  | ||
| + | |||
| + | </pre>  | ||
Revision as of 08:33, 3 April 2015
in tale 3 i was called Min and had my compound in Qatara and in tale 4 i was called Min and lived in Queens Retreat
now i settled down in Seven Lakes 5 min south west of the cs
im interested in cooking, herbs, sshrooms, atm my main focus is to set up a nice compound
cooking:
Q   	  Base         		   Add                  STR DEX END SPD CON FOC PER
OR 	6 carrots		1 onions 		  0   0   0  -8   0  -8   8 	  38:37
OR 	6 carrots		2 onions		  0   0   0  -8   0  -8   8 	  57:46
OR 	6 carrots		3 onions		 -2   0   0  -7  -2  -8   8 	1:12:39 
OR 	6 carrots		4 onions		 -7   0   0  -4  -7  -8   8 	1:24:34
OR 	6 carrots		5 onions		 -9   0   0   5  -9  -8   8	1:34:19
OR 	6      			6                         -   -   -   -   -   -   -     -  -  -
OR 	6 onions		5 carrot		-11   0   0   9 -11  -6   6	  54:49
OR 	6 onions		4 carrot		-11   0   0   8 -11  -8   8 	  49:49
OR 	6 onions		3 carrot		-11   0   0   9 -11  -7   7 	  43:42
OR 	6 onions		2 carrot		-11   0   0  10 -11  -5   5 	  36:02
OR 	6 onions		1 carrot		-11   0   0  11 -11  -2   2 	  26:12 
spd = SPD
R = result
A = ingredient A, here carrots
B = ingredient B, here onions
stat0 = hard coded stats of the ingredient
a = Amount of ingredient
p = potency of ingredient
approach: 
spdR = aA x pA x stat0A + aB x pB x stat0B
6A # 1B: -8 =  6 x pA x stat0A + 1 x pB x stat0B
6A # 5B:  5 =  6 x pA x stat0A + 5 x pB x stat0B
(solve the equation: subtract the 2nd row from the first one)
        -13 =      0           -4 x pB x stat0B
pB x spd0B =  13/4       
 -40 =  30 x pA x stat0A + 5 x pB x stat0B
  -5 =  -6 x pA x stat0A - 5 x pB x stat0B
(solve the equation:  5 x first equation - 2nd equation)
 -45 = 24 x pA x statA0
pA x spd0A = -45/24 = -1,875
6A # 1B:  -8 =  6 x pA x stat0A + 1 x pB x stat0B
6B # 1A:  11 =  1 x pA x stat0A + 6 x pB x stat0B
         -42 = 36 x pA x stat0A + 6 x pB x stat0B
 	 -11 =  -1 x pA x stat0A - 6 x pB x stat0B
         -53 = 35 x pA x stat0A + 0
pA x spd0A = -53/35  = -1,514   hmmmmm not really -1,875 myabe because of rounding ?
 
the same for str:
6A # 1B:  0 =  6 x pA x stat0A + 1 x pB x stat0B
6A # 5B: -9 =  6 x pA x stat0A + 5 x pB x stat0B
	  0 =  6 x pA x stat0A + 1 x pB x stat0B
	  9 = -6 x pA x stat0A - 5 x pB x stat0B
          9 =   0              -4 pbstr0B
pB x str0B = -9/4         
   	  0 = -30 x pA x stat0A - 5 x pB x stat0B
  	 -9 =  6 x pA x stat0A + 5 x pB x stat0B
         -9 = -24 xpAstat0A 
pA x str0A = -9 / 24 = 0,375
pA x spd0A = -1,875
pA x str0A =  0,375    damm, i want to seperate pA  need a other way...