package Organisms2.g4;

import Organisms2.*;
import java.awt.Color;

public class Group4Player2 extends Group4Wrapper {
    Color _idiot_color = new Color(1.0f,1.0f,0.7f);

    public void register( Organisms2 g, int key ) throws Exception {
        entity = new SimpleEntity(
            new int[]{ g.s(), g.v(), g.u(), g.M(), g.K() },
            key );
    }

    public String name() throws Exception {
        return "Tequila Idiot";
    }    

    public Color color() throws Exception {
        return _idiot_color;
    }
}
