Skip to content

Commit

Permalink
Ridge + stripes can combine
Browse files Browse the repository at this point in the history
  • Loading branch information
jobtalle committed Oct 27, 2021
1 parent 2993864 commit 8b13bac
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions js/koi/fish/breeder/mutations/mutations.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,25 @@ Mutations.prototype.createMutationsSpots = function() {
Mutation.BLUEPRINT_LAYER_FATHER,
Mutation.BLUEPRINT_LAYER_MOTHER_PREVIOUS
],
.06
)
.05
),
// Stripes + ridge can become combined
new Mutation(
new PatternFootprint([
new LayerFootprint(LayerBase.prototype.ID, LayerFootprint.PALETTE_ANY),
new LayerFootprint(LayerStripes.prototype.ID, LayerFootprint.PALETTE_SHARED)
]),
new PatternFootprint([
new LayerFootprint(LayerBase.prototype.ID, LayerFootprint.PALETTE_ANY),
new LayerFootprint(LayerRidge.prototype.ID, LayerFootprint.PALETTE_SHARED)
]),
[
Mutation.BLUEPRINT_LAYER_MIX,
Mutation.BLUEPRINT_LAYER_FATHER,
Mutation.BLUEPRINT_LAYER_MOTHER_PREVIOUS
],
.04
),
];
};

Expand Down

0 comments on commit 8b13bac

Please sign in to comment.