From 9de8f089ce3603fe6398c403f839ab35932b7c08 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 1 May 2015 11:14:17 -0400 Subject: [PATCH] v0.3.0: reduced artifact spawn rate slightly(now at parity with rings), and removed alchemist's toolkit from drop tables. --- .../shatteredpixeldungeon/items/Generator.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java index e4e55ce79..e95b5f688 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/Generator.java @@ -50,7 +50,7 @@ public class Generator { SCROLL ( 400, Scroll.class ), WAND ( 40, Wand.class ), RING ( 15, Ring.class ), - ARTIFACT( 20, Artifact.class), + ARTIFACT( 15, Artifact.class), SEED ( 50, Plant.Seed.class ), FOOD ( 0, Food.class ), GOLD ( 500, Gold.class ); @@ -190,10 +190,10 @@ public class Generator { TalismanOfForesight.class, TimekeepersHourglass.class, UnstableSpellbook.class, - AlchemistsToolkit.class, + AlchemistsToolkit.class, //currently removed from drop tables, pending rework. DriedRose.class //starts with no chance of spawning, chance is set directly after beating ghost quest. }; - Category.ARTIFACT.probs = new float[]{ 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0 }; + Category.ARTIFACT.probs = new float[]{ 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0 }; Category.SEED.classes = new Class[]{ Firebloom.Seed.class,