cleaned up formatting:
- removed trailing whitespace - changed all leading whitespace to tabs - removed IDE created author comments
This commit is contained in:
parent
baa83b7e43
commit
cebdff0221
|
@ -8,9 +8,6 @@ import com.watabou.utils.Random;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 16/01/2015.
|
||||
*/
|
||||
public class QuickSlot {
|
||||
|
||||
/**
|
||||
|
|
|
@ -5,9 +5,6 @@ package com.shatteredpixel.shatteredpixeldungeon.actors.blobs;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.effects.BlobEmitter;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.sprites.GooSprite;
|
||||
|
||||
/**
|
||||
* Created by Evan on 29/09/2014.
|
||||
*/
|
||||
public class GooWarn extends Blob {
|
||||
|
||||
//cosmetic blob, used to warn noobs that goo's pump up should, infact, be avoided.
|
||||
|
|
|
@ -7,9 +7,6 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.effects.BlobEmitter;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 08/10/2014.
|
||||
*/
|
||||
public class StenchGas extends Blob {
|
||||
|
||||
@Override
|
||||
|
|
|
@ -8,9 +8,6 @@ import com.shatteredpixel.shatteredpixeldungeon.effects.BlobEmitter;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
|
||||
import com.watabou.utils.Bundle;
|
||||
|
||||
/**
|
||||
* Created by Evan on 12/04/2015.
|
||||
*/
|
||||
public class VenomGas extends Blob {
|
||||
|
||||
private int strength = 0;
|
||||
|
|
|
@ -3,9 +3,6 @@ package com.shatteredpixel.shatteredpixeldungeon.actors.buffs;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.Assets;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 27/04/2015.
|
||||
*/
|
||||
public class Bless extends FlavourBuff {
|
||||
|
||||
{
|
||||
|
|
|
@ -15,9 +15,6 @@ import com.watabou.utils.Random;
|
|||
|
||||
import java.text.DecimalFormat;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 23/04/2015.
|
||||
*/
|
||||
public class Chill extends FlavourBuff {
|
||||
|
||||
private static final String TXT_FREEZES = "%s freezes!";
|
||||
|
|
|
@ -3,9 +3,6 @@ package com.shatteredpixel.shatteredpixeldungeon.actors.buffs;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
|
||||
|
||||
/**
|
||||
* Created by Evan on 14/05/2015.
|
||||
*/
|
||||
public class Corruption extends Buff {
|
||||
|
||||
{
|
||||
|
|
|
@ -8,9 +8,6 @@ import com.watabou.utils.Bundle;
|
|||
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 19/11/2014.
|
||||
*/
|
||||
public class EarthImbue extends FlavourBuff {
|
||||
|
||||
public static final float DURATION = 30f;
|
||||
|
|
|
@ -11,9 +11,6 @@ import com.watabou.utils.Random;
|
|||
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 19/11/2014.
|
||||
*/
|
||||
public class FireImbue extends Buff {
|
||||
|
||||
public static final float DURATION = 30f;
|
||||
|
|
|
@ -3,9 +3,6 @@ package com.shatteredpixel.shatteredpixeldungeon.actors.buffs;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
|
||||
|
||||
/**
|
||||
* Created by Evan on 04/04/2015.
|
||||
*/
|
||||
public class LockedFloor extends Buff {
|
||||
//this buff is purely meant as a visual indicator that the gameplay implications of a level seal are in effect.
|
||||
|
||||
|
|
|
@ -9,9 +9,6 @@ import java.util.ArrayList;
|
|||
import java.util.Collection;
|
||||
import java.util.LinkedList;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 06/02/2015.
|
||||
*/
|
||||
public class PinCushion extends Buff {
|
||||
|
||||
private ArrayList<MissileWeapon> items = new ArrayList<MissileWeapon>();
|
||||
|
|
|
@ -8,9 +8,6 @@ import com.watabou.utils.Bundle;
|
|||
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 19/11/2014.
|
||||
*/
|
||||
public class ToxicImbue extends Buff {
|
||||
|
||||
public static final float DURATION = 30f;
|
||||
|
|
|
@ -5,9 +5,6 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
|
||||
import com.watabou.utils.Bundle;
|
||||
|
||||
/**
|
||||
* Created by Evan on 12/04/2015.
|
||||
*/
|
||||
public class Venom extends Poison implements Hero.Doom {
|
||||
|
||||
private int damage = 1;
|
||||
|
|
|
@ -7,9 +7,6 @@ import com.watabou.noosa.Image;
|
|||
import com.watabou.utils.Callback;
|
||||
import com.watabou.utils.PointF;
|
||||
|
||||
/**
|
||||
* Created by Evan on 23/05/2015.
|
||||
*/
|
||||
public class Chains extends Group {
|
||||
|
||||
private static final double A = 180 / Math.PI;
|
||||
|
|
|
@ -6,9 +6,6 @@ import com.watabou.noosa.Game;
|
|||
import com.watabou.noosa.Gizmo;
|
||||
import com.watabou.noosa.audio.Sample;
|
||||
|
||||
/**
|
||||
* Created by Evan on 14/05/2015.
|
||||
*/
|
||||
public class DarkBlock extends Gizmo{
|
||||
|
||||
private CharSprite target;
|
||||
|
|
|
@ -8,9 +8,6 @@ import com.watabou.noosa.Game;
|
|||
import com.watabou.noosa.Group;
|
||||
import com.watabou.noosa.Image;
|
||||
|
||||
/**
|
||||
* Created by Evan on 20/04/2015.
|
||||
*/
|
||||
public class Surprise extends Image {
|
||||
|
||||
private static final float TIME_TO_FADE = 0.8f;
|
||||
|
|
|
@ -5,9 +5,6 @@ import com.watabou.noosa.particles.PixelParticle;
|
|||
import com.watabou.utils.PointF;
|
||||
import com.watabou.utils.Random;
|
||||
|
||||
/**
|
||||
* Created by Evan on 11/04/2015.
|
||||
*/
|
||||
public class RainbowParticle extends PixelParticle {
|
||||
|
||||
public static final Emitter.Factory BURST = new Emitter.Factory() {
|
||||
|
|
|
@ -3,9 +3,6 @@ package com.shatteredpixel.shatteredpixeldungeon.items;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.EquipableItem;
|
||||
|
||||
/**
|
||||
* Created by Evan on 24/08/2014.
|
||||
*/
|
||||
public abstract class KindofMisc extends EquipableItem {
|
||||
|
||||
public abstract void activate(Char ch);
|
||||
|
|
|
@ -8,9 +8,6 @@ import com.watabou.noosa.audio.Sample;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 16/03/2015.
|
||||
*/
|
||||
public class MerchantsBeacon extends Item {
|
||||
|
||||
private static final String AC_USE = "USE";
|
||||
|
|
|
@ -17,9 +17,6 @@ import com.watabou.utils.Random;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 24/11/2014.
|
||||
*/
|
||||
public class AlchemistsToolkit extends Artifact {
|
||||
|
||||
{
|
||||
|
|
|
@ -13,9 +13,6 @@ import com.watabou.utils.Random;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by Evan on 24/08/2014.
|
||||
*/
|
||||
public class Artifact extends KindofMisc {
|
||||
|
||||
private static final float TIME_TO_EQUIP = 1f;
|
||||
|
|
|
@ -8,9 +8,6 @@ import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
|
||||
import com.watabou.utils.Random;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 03/09/2014.
|
||||
*/
|
||||
public class CapeOfThorns extends Artifact {
|
||||
|
||||
{
|
||||
|
|
|
@ -17,9 +17,6 @@ import com.watabou.utils.Random;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 27/08/2014.
|
||||
*/
|
||||
public class ChaliceOfBlood extends Artifact {
|
||||
|
||||
private static final String TXT_CHALICE = "Chalice of Blood";
|
||||
|
|
|
@ -16,9 +16,6 @@ import com.watabou.utils.Bundle;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 25/08/2014.
|
||||
*/
|
||||
public class CloakOfShadows extends Artifact {
|
||||
|
||||
{
|
||||
|
|
|
@ -28,9 +28,6 @@ import com.watabou.utils.Random;
|
|||
import java.util.ArrayList;
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 21/11/2014.
|
||||
*/
|
||||
public class DriedRose extends Artifact {
|
||||
|
||||
{
|
||||
|
|
|
@ -20,9 +20,6 @@ import com.watabou.utils.Random;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by Evan on 23/05/2015.
|
||||
*/
|
||||
public class EtherealChains extends Artifact {
|
||||
|
||||
public static final String AC_CAST = "CAST";
|
||||
|
|
|
@ -21,9 +21,6 @@ import com.watabou.noosa.audio.Sample;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 26/08/2014.
|
||||
*/
|
||||
public class HornOfPlenty extends Artifact {
|
||||
|
||||
|
||||
|
|
|
@ -4,9 +4,6 @@ import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
|
||||
import com.watabou.utils.Random;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 03/09/2014.
|
||||
*/
|
||||
public class MasterThievesArmband extends Artifact {
|
||||
|
||||
{
|
||||
|
|
|
@ -21,9 +21,6 @@ import com.watabou.utils.Bundle;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 08/09/2014.
|
||||
*/
|
||||
public class SandalsOfNature extends Artifact {
|
||||
|
||||
{
|
||||
|
|
|
@ -15,9 +15,6 @@ import com.watabou.noosa.audio.Sample;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 08/09/2014.
|
||||
*/
|
||||
public class TalismanOfForesight extends Artifact {
|
||||
|
||||
{
|
||||
|
|
|
@ -18,9 +18,6 @@ import com.watabou.utils.Random;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 01/12/2014.
|
||||
*/
|
||||
public class TimekeepersHourglass extends Artifact {
|
||||
|
||||
private static final String TXT_HGLASS = "Timekeeper's Hourglass";
|
||||
|
|
|
@ -22,9 +22,6 @@ import com.watabou.utils.Random;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 26/11/2014.
|
||||
*/
|
||||
public class UnstableSpellbook extends Artifact {
|
||||
|
||||
{
|
||||
|
|
|
@ -4,9 +4,6 @@ import com.shatteredpixel.shatteredpixeldungeon.items.Item;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 05/02/2015.
|
||||
*/
|
||||
public class PotionBandolier extends Bag {
|
||||
|
||||
{
|
||||
|
|
|
@ -38,9 +38,6 @@ import com.watabou.noosa.audio.Sample;
|
|||
import com.watabou.utils.Bundle;
|
||||
import com.watabou.utils.Random;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 12/08/2014.
|
||||
*/
|
||||
public class Blandfruit extends Food {
|
||||
|
||||
public String message = "You eat the Blandfruit, bleugh!";
|
||||
|
|
|
@ -2,9 +2,6 @@ package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
|||
|
||||
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfForce extends Ring {
|
||||
|
||||
{
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfFuror extends Ring {
|
||||
|
||||
{
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
||||
|
||||
|
||||
/**
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfMight extends Ring {
|
||||
|
||||
{
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfSharpshooting extends Ring {
|
||||
|
||||
{
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfTenacity extends Ring {
|
||||
|
||||
{
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
package com.shatteredpixel.shatteredpixeldungeon.items.rings;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 10/09/2014.
|
||||
*/
|
||||
public class RingOfWealth extends Ring {
|
||||
|
||||
{
|
||||
|
|
|
@ -27,9 +27,6 @@ import com.watabou.utils.Callback;
|
|||
import com.watabou.utils.PointF;
|
||||
import com.watabou.utils.Random;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 05/05/2015.
|
||||
*/
|
||||
public class WandOfBlastWave extends Wand {
|
||||
|
||||
{
|
||||
|
|
|
@ -24,9 +24,6 @@ import com.watabou.utils.Random;
|
|||
import java.util.Arrays;
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* Created by Evan on 14/05/2015.
|
||||
*/
|
||||
//TODO: balancing
|
||||
public class WandOfCorruption extends Wand {
|
||||
|
||||
|
|
|
@ -19,9 +19,6 @@ import com.watabou.utils.Callback;
|
|||
import com.watabou.utils.PointF;
|
||||
import com.watabou.utils.Random;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 23/04/2015.
|
||||
*/
|
||||
public class WandOfFrost extends Wand {
|
||||
|
||||
{
|
||||
|
|
|
@ -32,9 +32,6 @@ import com.watabou.utils.Random;
|
|||
import java.util.Arrays;
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* Created by Evan on 10/04/2015.
|
||||
*/
|
||||
public class WandOfPrismaticLight extends Wand {
|
||||
|
||||
{
|
||||
|
|
|
@ -39,9 +39,6 @@ import com.watabou.utils.Random;
|
|||
import java.util.Arrays;
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 13/05/2015.
|
||||
*/
|
||||
public class WandOfTransfusion extends Wand {
|
||||
|
||||
{
|
||||
|
|
|
@ -13,9 +13,6 @@ import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
|
|||
import com.watabou.noosa.audio.Sample;
|
||||
import com.watabou.utils.Callback;
|
||||
|
||||
/**
|
||||
* Created by Evan on 12/04/2015.
|
||||
*/
|
||||
public class WandOfVenom extends Wand {
|
||||
|
||||
{
|
||||
|
|
|
@ -25,9 +25,6 @@ import com.watabou.utils.Random;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 13/03/2015.
|
||||
*/
|
||||
public class MagesStaff extends MeleeWeapon {
|
||||
|
||||
private Wand wand;
|
||||
|
|
|
@ -6,9 +6,6 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.items.food.Blandfruit;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
|
||||
|
||||
/**
|
||||
* Created by Evan on 13/08/2014.
|
||||
*/
|
||||
public class BlandfruitBush extends Plant {
|
||||
|
||||
private static final String TXT_DESC =
|
||||
|
|
|
@ -7,9 +7,6 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Vertigo;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLevitation;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
|
||||
|
||||
/**
|
||||
* Created by Evan on 23/10/2014.
|
||||
*/
|
||||
public class Stormvine extends Plant {
|
||||
|
||||
private static final String TXT_DESC =
|
||||
|
|
|
@ -7,9 +7,6 @@ import com.watabou.noosa.MovieClip;
|
|||
import com.watabou.noosa.TextureFilm;
|
||||
import com.watabou.utils.Callback;
|
||||
|
||||
/**
|
||||
* Created by Evan on 09/10/2014.
|
||||
*/
|
||||
public class GnollTricksterSprite extends MobSprite {
|
||||
|
||||
private Animation cast;
|
||||
|
|
|
@ -4,9 +4,6 @@ import com.shatteredpixel.shatteredpixeldungeon.Assets;
|
|||
import com.watabou.noosa.MovieClip;
|
||||
import com.watabou.noosa.TextureFilm;
|
||||
|
||||
/**
|
||||
* Created by Evan on 09/10/2014.
|
||||
*/
|
||||
public class GreatCrabSprite extends MobSprite {
|
||||
|
||||
public GreatCrabSprite() {
|
||||
|
|
|
@ -4,9 +4,6 @@ import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
|
||||
import com.watabou.noosa.Image;
|
||||
|
||||
/**
|
||||
* Created by Evan on 21/01/2015.
|
||||
*/
|
||||
public class ResumeIndicator extends Tag {
|
||||
|
||||
private Image icon;
|
||||
|
|
|
@ -11,9 +11,6 @@ import com.watabou.noosa.BitmapTextMultiline;
|
|||
import com.watabou.noosa.Image;
|
||||
import com.watabou.noosa.TextureFilm;
|
||||
|
||||
/**
|
||||
* Created by debenhame on 06/04/2015.
|
||||
*/
|
||||
public class WndInfoBuff extends Window {
|
||||
|
||||
private static final float GAP = 2;
|
||||
|
|
Loading…
Reference in New Issue
Block a user