Aber Hirsche dürfen doch auf Wild spawnen! Beides! Oder nicht?
das ist ja derzeit so:
PHP-Code:
elif loopPlot.getBonusType(-1) == bonus_deer and iPlotImprovement == -1:
if loopPlot.getNumUnits() == 0:
iRand = CvUtil.myRandom(10, "deer or bear")
if iRand == 1:
iUnitType = gc.getInfoTypeForString("UNIT_DEER")
pBarbPlayer.initUnit(iUnitType, x, y, UnitAITypes.UNITAI_ATTACK, DirectionTypes.DIRECTION_SOUTH)
continue
elif iRand == 2:
iUnitType = gc.getInfoTypeForString("UNIT_BEAR")
pBarbPlayer.initUnit(iUnitType, x, y, UnitAITypes.UNITAI_ATTACK, DirectionTypes.DIRECTION_SOUTH)
continue