001package com.fs.starfarer.api.impl.campaign.ids;
002
003/**
004 * Variable names for stuff stored in memory that:
005 * 1) Generally isn't used in rules.csv (but might occasionally be)
006 * 2) Generally is used more than once, so it's convenient to track from here
007 * 
008 * 
009 * @author Alex Mosolov
010 *
011 * Copyright 2014 Fractal Softworks, LLC
012 */
013public class Pings {
014        public static final String COMMS = "comms";
015        public static final String DANGER = "danger";
016        public static final String FLEE = "flee";
017        
018        public static final String SENSOR_BURST = "sensor_burst";
019        
020        public static final String NEW_SENSOR_CONTACT = "new_sensor_contact";
021        public static final String NOTICED_PLAYER = "noticed_player";
022        public static final String LOST_SIGHT_OF_PLAYER = "lost_sight_of_player";
023        
024        public static final String REMOTE_SURVEY = "remote_survey";
025        public static final String DISTRESS_CALL = "distress_call";
026        
027        public static final String WARNING_BEACON1 = "warning_beacon1";
028        public static final String WARNING_BEACON2 = "warning_beacon2";
029        public static final String WARNING_BEACON3 = "warning_beacon3";
030        
031        public static final String INTERDICT = "interdict";
032        
033        public static final String TRANSVERSE_JUMP = "transverse_jump";
034        
035        public static final String SLIPSURGE = "slipsurge";
036        
037}