if ( game.getPlanetaryConditions().getAtmosphere() == PlanetaryConditions.ATMO_VACUUM ){
rollTarget.addModifier(3,"Vacuum");
}else if ( game.getPlanetaryConditions().getAtmosphere() == PlanetaryConditions.ATMO_VHIGH){
rollTarget.addModifier(2,"Very High Atmosphere Pressure");
}else if ( game.getPlanetaryConditions().getAtmosphere() == PlanetaryConditions.ATMO_TRACE){
rollTarget.addModifier(2,"Trace atmosphere");
}
if ( (game.getPlanetaryConditions().getWeather() == PlanetaryConditions.WE_HEAVY_SNOW)
|| (game.getPlanetaryConditions().getWeather() == PlanetaryConditions.WE_ICE_STORM)
|| (game.getPlanetaryConditions().getWeather() == PlanetaryConditions.WE_DOWNPOUR)