====== Shuriken Item - Code References ====== {{ rpd:images:shuriken_item.png|Shuriken }} ===== Java Classes ===== * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/weapon/missiles/Shuriken.java|Shuriken.java]] - Main implementation * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/nyrds/pixeldungeon/items/common/ItemFactory.java|ItemFactory.java]] - Item registration (line 346) * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/items/armor/HuntressArmor.java|HuntressArmor.java]] - Special ability creates Shuriken instances (lines 39-40) ===== JSON Configuration ===== This entity does not appear to have dedicated JSON configuration ===== String Resources ===== shuriken Star-shaped pieces of metal with razor-sharp blades do significant damage to their targets. They can be thrown at a very high rate. masculine ===== Class Implementation Details ===== * **Image**: ItemSpriteSheet.SHURIKEN * **Strength Required**: 13 * **Damage Range**: 2-6 * **Delay**: 0.5f (very fast throwing rate) * **Price**: 15 * quantity * **Random Quantity**: 5-15 * **Projectile Behavior**: Fast rotating but does not fly straight (isFliesStraight() = false, isFliesFastRotating() = true) ===== Lua Scripts ===== This entity is implemented in Java, no Lua script exists