private void AddSharaBeyActionEffect(Ship.GenericShip ship) { ship.AddAvailableDiceModification(new ActionsList.SharaBeyAction() { Host = HostShip }); }
private void AddJessPavaActionEffect(Ship.GenericShip host) { ActionsList.GenericAction newAction = new ActionsList.JessPavaActionEffect(); newAction.Host = host; newAction.ImageUrl = host.ImageUrl; host.AddAvailableDiceModification(newAction); }
private void AdvancedProtonTorpedoesAddDiceModification(Ship.GenericShip ship) { ship.AddAvailableDiceModification(this); }