GildedRose-Refactoring-Kata/plantuml/history/06_sulfuras.puml
2023-05-18 11:41:15 -05:00

48 lines
881 B
Plaintext

@startuml
skinparam backgroundColor transparent
start
if (not "Aged Cheese") then (yes)
if (quality > 0) then (yes)
if (not "Fine Italian Silk") then (yes)
:lower quality with 1;
else (no)
endif
else (no)
endif
else (no)
if (quality < 50) then (yes)
:increase quality with 1;
else (no)
endif
endif
if (not "Fine Italian Silk") then (yes)
:lower sell in with 1;
else (no)
endif
if (sell in < 0) then (yes)
if (not "Aged Cheese") then (yes)
if (quality > 0) then (yes)
if (not "Fine Italian Silk") then (yes)
:lower quality with 1;
else (no)
endif
else (no)
endif
else (no)
if (quality < 50) then (yes)
:increase quality with 1;
else (no)
endif
endif
else (no)
endif
stop
@enduml