Skip to content

Commit

Permalink
Update jpn.morpho.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
shilik authored Oct 15, 2023
1 parent 1f9ce57 commit 548ab88
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/jpn/jpn.morpho.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,27 @@ class JpnMorpho extends Morpho {
desc: "Potential",
mood: Morpho.Mood.Pot
},
"pass": {// I can go
"pres_pass": {// someone goes and causes me to get into trouble
desc: "Passive",
voice: Morpho.Voice.P,
tense: Morpho.Tense.Pr
},
"caus_pass": {// I can go
"past_pass": {// someone goes and causes me to get into trouble
desc: "Passive",
voice: Morpho.Voice.P,
tense: Morpho.Tense.Pa
},
"pres_caus_pass": {// I am forced to go
desc: "Causative Passive",
voice: Morpho.Voice.P,
tense: Morpho.Tense.Pr,
cause: 1
},
"past_caus_pass": {// I was forced to go
desc: "Causative Passive",
voice: Morpho.Voice.P,
tense: Morpho.Tense.Pa,
cause: 1
}
};
};
Expand Down

0 comments on commit 548ab88

Please sign in to comment.