| Line 4: |
Line 4: |
| | | | |
| | <pre> | | <pre> |
| − | if species = Raposa{ | + | if species == Raposa && gender == Male{ |
| − | if gender = Male{
| + | only Fur |
| − | only display fur color
| |
| − | }
| |
| − | else if gender = Female{
| |
| − | display both fur and hair color
| |
| − | }
| |
| | } | | } |
| − | else if species = Human{ | + | else if species == Human{ |
| − | only display hair color | + | only Hair |
| | + | } |
| | + | else{ |
| | + | both |
| | } | | } |
| | </pre> | | </pre> |