Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Dans la classe IA
- public static void launchIA(Fighter fighter, Fight fight)
- {
- if(fighter.getMob() == null)
- {
- return;
- }
- switch(fighter.getMob().getTemplate().getIAType())
- {
- case 0://Poutch
- return;
- case 1://Agressif
- applyType1(fighter, fight);
- break;
- case 2://Soutien
- applyType2(fighter, fight);
- break;
- //etc
- default:
- applyType1(fighter, fight);
- break;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment