Factions/src/com/massivecraft/factions/entity/MConf.java

34 lines
968 B
Java
Raw Normal View History

2013-04-22 09:37:53 +02:00
package com.massivecraft.factions.entity;
2013-04-22 09:41:48 +02:00
import org.bukkit.ChatColor;
2013-04-22 09:37:53 +02:00
import com.massivecraft.mcore.MCore;
import com.massivecraft.mcore.store.Entity;
public class MConf extends Entity<MConf>
{
// -------------------------------------------- //
// META
// -------------------------------------------- //
public static MConf get()
{
return MConfColl.get().get(MCore.INSTANCE);
}
// -------------------------------------------- //
2013-04-22 09:41:48 +02:00
// COLORS
2013-04-22 09:37:53 +02:00
// -------------------------------------------- //
2013-04-22 09:41:48 +02:00
public ChatColor colorMember = ChatColor.GREEN;
public ChatColor colorAlly = ChatColor.DARK_PURPLE;
public ChatColor colorTruce = ChatColor.LIGHT_PURPLE;
public ChatColor colorNeutral = ChatColor.WHITE;
public ChatColor colorEnemy = ChatColor.RED;
public ChatColor colorNoPVP = ChatColor.GOLD;
public ChatColor colorFriendlyFire = ChatColor.DARK_RED;
//public ChatColor colorWilderness = ChatColor.DARK_GREEN;
2013-04-22 09:37:53 +02:00
}