예제 #1
0
파일: SharaBey.cs 프로젝트: xNyer/FlyCasual
 private void AddSharaBeyActionEffect(Ship.GenericShip ship)
 {
     ship.AddAvailableDiceModification(new ActionsList.SharaBeyAction()
     {
         Host = HostShip
     });
 }
예제 #2
0
파일: JessPava.cs 프로젝트: xNyer/FlyCasual
 private void AddJessPavaActionEffect(Ship.GenericShip host)
 {
     ActionsList.GenericAction newAction = new ActionsList.JessPavaActionEffect();
     newAction.Host     = host;
     newAction.ImageUrl = host.ImageUrl;
     host.AddAvailableDiceModification(newAction);
 }
예제 #3
0
 private void AdvancedProtonTorpedoesAddDiceModification(Ship.GenericShip ship)
 {
     ship.AddAvailableDiceModification(this);
 }