parent
00b95d7e79
commit
e3e56c2999
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,23 @@
|
||||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package com.dungeoncrawler.model.items;
|
||||
|
||||
import com.dungeoncrawler.model.Item;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author jonathan
|
||||
*/
|
||||
public class DmgAmulet extends Item {
|
||||
|
||||
public DmgAmulet(int lvl) {
|
||||
super(lvl);
|
||||
this.dmg = 8 * lvl;
|
||||
this.movementBoost = 1;
|
||||
this.id = 3;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in new issue