14 lines
464 B
Java
14 lines
464 B
Java
package com.alterdekim.javabot.bot.conditions;
|
|
|
|
import com.alterdekim.javabot.Constants;
|
|
import com.alterdekim.javabot.components.BunkerBot;
|
|
import org.telegram.telegrambots.meta.api.methods.send.SendMessage;
|
|
|
|
public class MedicalSupply implements ConditionCard {
|
|
@Override
|
|
public void executeCard(BunkerBot bot, String chatId) {
|
|
bot.liveFormula.add(5.0d / 100.0d);
|
|
bot.sendApi(new SendMessage(chatId, Constants.MEDS_SUPPLY_COND));
|
|
}
|
|
}
|