forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.8 KiB
97 lines
2.8 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2024 |
|
// www.magicbane.com |
|
|
|
package engine.wpakpowers; |
|
|
|
public class Behaviour { |
|
|
|
public static Object Behaviour() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object Flag() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object MapIntToInts() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object Standard() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object FPSubTypeAttr() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object SubTypeSourceType() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object SubTypePowerType() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object SubTypeSkill() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object FPSubTypeDmg() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object DD() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object StringBehaviour() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object SubTypeMod() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object SubTypePower() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object SubTypeDmg() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object FPSubTypeSkill() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object FPSubTypeMonster() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
|
|
public static Object ProcInfo() { |
|
System.out.println("Behavior method called"); |
|
return null; |
|
} |
|
}
|
|
|