Emx77 wrote:8<
1. How is it possible that my opponent's last RGD destroyed existing and also depot under construction?
The first RGD destroyed your level 2 depot. Since you used either the Build Depot SO or the Build Depot RGD to increase the depot level and you are lucky that this took place
after the original depot was destroyed, you incidentally got a new level 1 depot with the status 'under construction'.
The next turn he played the Indian Raid RGD again and destroyed the new depot too.
Emx77 wrote:2. What could I do to prevent Indian Raid?
To play the Indian Raid RGD the Indian unit must be in the target or an adjacent region. Prevent that from happening.
Emx77 wrote:I had two divisions guarding province. Exactly how many elements is needed to defend depot against Indian raid RGD?
To be
100% protected you would need 100 elements in the target region. This is the event run after the RGD is successfully played:
Code: Select all
StartEvent = RGDScriptIndiansRaid|999|0|NULL|NULL|NULL|NULL
Conditions
SelectSubUnits = Region;Enemy
EvalSubUnitCount = DICE_NOT
EvalSubUnitCount = DICE_NOT
Actions
RemoveStructure = ByKind $StuDepot;ALL;ANYFAC
EndEvent
The 'EvalSubUnitCount = DICE_NOT' means that a 100 sided die is rolled and the results is compared to the number of enemy --to the Indian unit-- SubUnits (elements) in the region. If the die roll is higher that SU's the statement evaluates as '
true' and processing continues to the next statement where 'EvalSubUnitCount = DICE_NOT' occurs again. If the second check is also successful, the depot will be destroyed.
Emx77 wrote:Did I make mistake by not putting at least one unit inside El Paso? Would that help?
No, the number of elements in the region is counted. Where in the region they are makes no difference.
DrPostman wrote:I thought that the more troops you had there the less of a chance
the RGD would work. Hope you get a good answer because I'm
curious too.
Yes, as I stated above, the more
elements you have in a region, the less likely that the Indian Raid will succeed.