mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
17 lines
398 B
Java
17 lines
398 B
Java
package script.template.item;
|
|
|
|
import com.l2jserver.model.template.PotionTemplate;
|
|
import com.l2jserver.model.world.capability.Attackable;
|
|
import com.l2jserver.model.world.capability.Attacker;
|
|
|
|
public class TestPotionTemplate extends PotionTemplate {
|
|
public TestPotionTemplate() {
|
|
super(null);
|
|
}
|
|
|
|
@Override
|
|
public void consume(Attacker source, Attackable target) {
|
|
//TODO consume item
|
|
}
|
|
}
|