-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
157 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
documentation/docs/adapters/BasicAdapter/entries/quest/completable_objective.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import * as fields from '@site/src/components/EntryField'; | ||
import Admonition from '@theme/Admonition'; | ||
import Link from '@docusaurus/Link'; | ||
|
||
# Completable Objective | ||
|
||
The `Completable Objective` entry is an objective that can show a completed stage. | ||
It is shown to the player when the show criteria are met, regardless of if the completed criteria are met. | ||
|
||
## How could this be used? | ||
This is useful when the quest has multiple objectives that can be completed in different orders. | ||
For example, the player needs to collect wheat, eggs, and milk to make a cake. | ||
The order in which the player collects the items does not matter. | ||
But you want to show the player which items they have collected. | ||
|
||
|
||
## Fields | ||
|
||
<fields.EntryField name='Quest' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Children' required multiple> | ||
</fields.EntryField> | ||
<fields.EntryField name='Show Criteria' required multiple> | ||
The criteria need to be met for the objective to be able to be shown. | ||
</fields.EntryField> | ||
<fields.EntryField name='Completed Criteria' required multiple> | ||
The criteria to display the objective as completed. | ||
</fields.EntryField> | ||
<fields.EntryField name='Display' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Priority Override' optional> | ||
</fields.EntryField> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
documentation/docs/adapters/EntityAdapter/entries/entity/allay_instance.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import * as fields from '@site/src/components/EntryField'; | ||
import Admonition from '@theme/Admonition'; | ||
import Link from '@docusaurus/Link'; | ||
|
||
# Allay Instance | ||
|
||
The `Allay Instance` class is an entry that represents an instance of an allay entity. | ||
|
||
## How could this be used? | ||
|
||
This could be used to create an allay entity. | ||
|
||
|
||
## Fields | ||
|
||
<fields.EntryField name='Definition' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Spawn Location' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Data' required multiple> | ||
</fields.EntryField> | ||
<fields.EntryField name='Activity' required> | ||
</fields.EntryField> |
23 changes: 23 additions & 0 deletions
23
documentation/docs/adapters/EntityAdapter/entries/entity/chicken_instance.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import * as fields from '@site/src/components/EntryField'; | ||
import Admonition from '@theme/Admonition'; | ||
import Link from '@docusaurus/Link'; | ||
|
||
# Chicken Instance | ||
|
||
The `ChickenInstance` class is an entry that represents an instance of a chicken entity. | ||
|
||
## How could this be used? | ||
|
||
This could be used to create a chicken entity. | ||
|
||
|
||
## Fields | ||
|
||
<fields.EntryField name='Definition' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Spawn Location' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Data' required multiple> | ||
</fields.EntryField> | ||
<fields.EntryField name='Activity' required> | ||
</fields.EntryField> |
23 changes: 23 additions & 0 deletions
23
documentation/docs/adapters/EntityAdapter/entries/entity/frog_instance.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import * as fields from '@site/src/components/EntryField'; | ||
import Admonition from '@theme/Admonition'; | ||
import Link from '@docusaurus/Link'; | ||
|
||
# Frog Instance | ||
|
||
The `FrogInstance` class is an entry that represents an instance of a frog entity. | ||
|
||
## How could this be used? | ||
|
||
This could be used to create a frog entity. | ||
|
||
|
||
## Fields | ||
|
||
<fields.EntryField name='Definition' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Spawn Location' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Data' required multiple> | ||
</fields.EntryField> | ||
<fields.EntryField name='Activity' required> | ||
</fields.EntryField> |
23 changes: 23 additions & 0 deletions
23
documentation/docs/adapters/EntityAdapter/entries/entity/magma_cube_instance.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import * as fields from '@site/src/components/EntryField'; | ||
import Admonition from '@theme/Admonition'; | ||
import Link from '@docusaurus/Link'; | ||
|
||
# Magma Cube Instance | ||
|
||
The `MagmaCubeInstance` class is an entry that represents an instance of a magma cube entity. | ||
|
||
## How could this be used? | ||
|
||
This could be used to create a magma cube entity. | ||
|
||
|
||
## Fields | ||
|
||
<fields.EntryField name='Definition' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Spawn Location' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Data' required multiple> | ||
</fields.EntryField> | ||
<fields.EntryField name='Activity' required> | ||
</fields.EntryField> |
23 changes: 23 additions & 0 deletions
23
documentation/docs/adapters/EntityAdapter/entries/entity/slime_instance.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import * as fields from '@site/src/components/EntryField'; | ||
import Admonition from '@theme/Admonition'; | ||
import Link from '@docusaurus/Link'; | ||
|
||
# Slime Instance | ||
|
||
The `SlimeInstance` class is an entry that represents an instance of a slime entity. | ||
|
||
## How could this be used? | ||
|
||
This could be used to create a slime entity. | ||
|
||
|
||
## Fields | ||
|
||
<fields.EntryField name='Definition' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Spawn Location' required> | ||
</fields.EntryField> | ||
<fields.EntryField name='Data' required multiple> | ||
</fields.EntryField> | ||
<fields.EntryField name='Activity' required> | ||
</fields.EntryField> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters