V0.2.0: Updated TODOs
This commit is contained in:
@@ -4,7 +4,7 @@ package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfForce extends Ring {
|
||||
//TODO: testing, numbers tweaking
|
||||
//TODO: numbers tweaking
|
||||
{
|
||||
name = "Ring of Force";
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfSharpshooting extends Ring {
|
||||
//TODO: testing, numbers tweaking
|
||||
//TODO: numbers tweaking, acc logic refactor, does this work with boomerang?
|
||||
{
|
||||
name = "Ring of Sharpshooting";
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfTenacity extends Ring {
|
||||
//TODO: testing, numbers tweaking
|
||||
//TODO: numbers tweaking
|
||||
{
|
||||
name = "Ring of Tenacity";
|
||||
}
|
||||
|
||||
@@ -64,7 +64,6 @@ public class IncendiaryDart extends MissileWeapon {
|
||||
} else {
|
||||
if (!curUser.shoot( enemy, this )) {
|
||||
Dungeon.level.drop( this, cell ).sprite.drop();
|
||||
//TODO: test this
|
||||
} else {
|
||||
int bonus = 0;
|
||||
for (Buff buff : curUser.buffs(RingOfSharpshooting.Aim.class)) {
|
||||
|
||||
@@ -64,7 +64,6 @@ public class MissileWeapon extends Weapon {
|
||||
} else {
|
||||
if (!curUser.shoot( enemy, this )) {
|
||||
miss( cell );
|
||||
//TODO: test this
|
||||
} else {
|
||||
int bonus = 0;
|
||||
for (Buff buff : curUser.buffs(RingOfSharpshooting.Aim.class)) {
|
||||
|
||||
Reference in New Issue
Block a user