Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #16

Merged
merged 1 commit into from
Nov 9, 2023
Merged

Dev #16

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,16 @@ func main() {
```

## Contributing
Contributions to Nook are welcome! If you have any ideas, bug reports, or enhancements, please submit them as GitHub issues or create a pull request with your changes. For major contributions, it is recommended to discuss your ideas first by creating an issue to ensure alignment with the project's goals and direction. Please see the [CONTRIBUTION](./CONTRIBUTING.md) file fore more details.
We warmly welcome contributions to Nook. Whether you have innovative ideas, bug reports, or enhancements in mind, please share them with us by submitting GitHub issues or creating pull requests. For substantial contributions, it's a good practice to start a discussion by creating an issue to ensure alignment with the project's goals and direction. Refer to the [CONTRIBUTING](./CONTRIBUTING.md) file for comprehensive details.

## Branching
For a smooth collaboration experience, we have established branch naming conventions and guidelines. Please consult the [BRANCH_NAMING_CONVENTION](./BRANCH_NAMING_CONVENTION.md) document for comprehensive information and best practices.

## License
Nook is licensed under the MIT License. Feel free to use, modify, and distribute the code within this repository as per the terms of the license. Please see the [LICENSE](./LICENSE) file for more details.
Nook is released under the MIT License, granting you the freedom to use, modify, and distribute the code within this repository in accordance with the terms of the license. For additional information, please review the [LICENSE](./LICENSE) file.

## Security
If you discover a security vulnerability within this project, please consult the [SECURITY](./SECURITY.md) document for information and next steps.

## Code Of Conduct
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). For additional information, please review the [CODE_OF_CONDUCT](./CODE_OF_CONDUCT.md) file.
16 changes: 8 additions & 8 deletions character/alligator/alfonso.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ import (
"golang.org/x/text/language"
)

// alfonsoBirthday represents Alfonso's birthday (June 9th).
var (
// Define Alfonso's birthday.
alfonsoBirthday = nook.Birthday{
Day: 9,
Month: time.June}
)

// alfonsoCode represents Alfonso's unique code ("crd00").
var (
// Define Alfonso's code.
alfonsoCode = nook.Code{
Value: "crd00"}
)

// Define Alfonso's names in various languages.
// Different names for Alfonso in various languages.
var (
alfonsoAmericanEnglishName = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -79,8 +79,8 @@ var (
Value: "阿泥"}
)

// alfonsoName represents Alfonso's name in different languages.
var (
// Define Alfonso's names in different languages as a map.
alfonsoName = nook.Languages{
language.AmericanEnglish: alfonsoAmericanEnglishName,
language.CanadianFrench: alfonsoCanadianFrenchName,
Expand All @@ -97,8 +97,8 @@ var (
language.TraditionalChinese: alfonsoTraditionalChineseName}
)

// alfonsoCharacter represents Alfonso's character information.
var (
// Define Alfonso's character attributes.
alfonsoCharacter = nook.Character{
Animal: animal.Alligator,
Birthday: alfonsoBirthday,
Expand All @@ -109,7 +109,7 @@ var (
Special: false}
)

// Define Alfonso's phrases in different languages.
// Different phrases spoken by Alfonso in various languages.
var (
alfonsoAmericanEnglishPhrase = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -164,8 +164,8 @@ var (
Value: "鱷泥"}
)

// alfonsoPhrase represents Alfonso's phrases in different languages.
var (
// Define Alfonso's phrases in different languages as a map.
alfonsoPhrase = nook.Languages{
language.AmericanEnglish: alfonsoAmericanEnglishPhrase,
language.CanadianFrench: alfonsoCanadianFrenchPhrase,
Expand All @@ -182,8 +182,8 @@ var (
language.TraditionalChinese: alfonsoTraditionalChinesePhrase}
)

// Alfonso represents the character Alfonso with his complete information.
var (
// Alfonso as a villager with his character, personality, and phrases.
Alfonso = nook.Villager{
Character: alfonsoCharacter,
Personality: personality.Lazy,
Expand Down
8 changes: 8 additions & 0 deletions character/alligator/alli.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ import (
"golang.org/x/text/language"
)

// alliBirthday represents Alli's birthday (November 8th).
var (
alliBirthday = nook.Birthday{
Day: 8,
Month: time.November}
)

// alliCode represents Alli's unique code ("crd01").
var (
alliCode = nook.Code{
Value: "crd01"}
)

// Different names for Alli in various languages.
var (
alliAmericanEnglishName = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -76,6 +79,7 @@ var (
Value: "鱷羅思"}
)

// alliName represents Alli's name in different languages.
var (
alliName = nook.Languages{
language.AmericanEnglish: alliAmericanEnglishName,
Expand All @@ -93,6 +97,7 @@ var (
language.TraditionalChinese: alliTraditionalChineseName}
)

// alliCharacter represents Alli's character information.
var (
alliCharacter = nook.Character{
Animal: animal.Alligator,
Expand All @@ -104,6 +109,7 @@ var (
Special: false}
)

// Different phrases spoken by Alli in various languages.
var (
alliAmericanEnglishPhrase = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -158,6 +164,7 @@ var (
Value: "鱷魚皮"}
)

// alliPhrase represents Alli's phrases in different languages.
var (
alliPhrase = nook.Languages{
language.AmericanEnglish: alliAmericanEnglishPhrase,
Expand All @@ -175,6 +182,7 @@ var (
language.TraditionalChinese: alliTraditionalChinesePhrase}
)

// Alli represents the character Alli with her complete information.
var (
Alli = nook.Villager{
Character: alliCharacter,
Expand Down
8 changes: 8 additions & 0 deletions character/alligator/boots.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ import (
"golang.org/x/text/language"
)

// bootsBirthday represents Boots' birthday (August 7th).
var (
bootsBirthday = nook.Birthday{
Day: 7,
Month: time.August}
)

// bootsCode represents Boots' unique code ("crd02").
var (
bootsCode = nook.Code{
Value: "crd02"}
)

// Different names for Boots in various languages.
var (
bootsAmericanEnglishName = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -76,6 +79,7 @@ var (
Value: "豐年"}
)

// bootsName represents Boots' name in different languages.
var (
bootsName = nook.Languages{
language.AmericanEnglish: bootsAmericanEnglishName,
Expand All @@ -93,6 +97,7 @@ var (
language.TraditionalChinese: bootsTraditionalChineseName}
)

// bootsCharacter represents Boots' character information.
var (
bootsCharacter = nook.Character{
Animal: animal.Alligator,
Expand All @@ -104,6 +109,7 @@ var (
Special: false}
)

// Different phrases spoken by Boots in various languages.
var (
bootsAmericanEnglishPhrase = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -158,6 +164,7 @@ var (
Value: "跳"}
)

// bootsPhrase represents Boots' phrases in different languages.
var (
bootsPhrase = nook.Languages{
language.AmericanEnglish: bootsAmericanEnglishPhrase,
Expand All @@ -175,6 +182,7 @@ var (
language.TraditionalChinese: bootsTraditionalChinesePhrase}
)

// Boots represents the character Boots with his complete information.
var (
Boots = nook.Villager{
Character: bootsCharacter,
Expand Down
8 changes: 8 additions & 0 deletions character/alligator/del.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ import (
"golang.org/x/text/language"
)

// delBirthday represents Del's birthday (May 27th).
var (
delBirthday = nook.Birthday{
Day: 27,
Month: time.May}
)

// delCode represents Del's unique code ("crd04").
var (
delCode = nook.Code{
Value: "crd04"}
)

// Different names for Del in various languages.
var (
delAmericanEnglishName = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -76,6 +79,7 @@ var (
Value: "大和"}
)

// delName represents Del's name in different languages.
var (
delName = nook.Languages{
language.AmericanEnglish: delAmericanEnglishName,
Expand All @@ -93,6 +97,7 @@ var (
language.TraditionalChinese: delTraditionalChineseName}
)

// delCharacter represents Del's character information.
var (
delCharacter = nook.Character{
Animal: animal.Alligator,
Expand All @@ -104,6 +109,7 @@ var (
Special: false}
)

// Different phrases spoken by Del in various languages.
var (
delAmericanEnglishPhrase = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -158,6 +164,7 @@ var (
Value: "噗咻"}
)

// delPhrase represents Del's phrases in different languages.
var (
delPhrase = nook.Languages{
language.AmericanEnglish: delAmericanEnglishPhrase,
Expand All @@ -175,6 +182,7 @@ var (
language.TraditionalChinese: delTraditionalChinesePhrase}
)

// Del represents the character Del with his complete information.
var (
Del = nook.Villager{
Character: delCharacter,
Expand Down
8 changes: 8 additions & 0 deletions character/alligator/drago.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ import (
"golang.org/x/text/language"
)

// dragoBirthday represents Drago's birthday (February 12th).
var (
dragoBirthday = nook.Birthday{
Day: 12,
Month: time.February}
)

// dragoCode represents Drago's unique code ("crd08").
var (
dragoCode = nook.Code{
Value: "crd08"}
)

// Different names for Drago in various languages.
var (
dragoAmericanEnglishName = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -76,6 +79,7 @@ var (
Value: "阿龍"}
)

// dragoName represents Drago's name in different languages.
var (
dragoName = nook.Languages{
language.AmericanEnglish: dragoAmericanEnglishName,
Expand All @@ -93,6 +97,7 @@ var (
language.TraditionalChinese: dragoTraditionalChineseName}
)

// dragoCharacter represents Drago's character information.
var (
dragoCharacter = nook.Character{
Animal: animal.Alligator,
Expand All @@ -104,6 +109,7 @@ var (
Special: false}
)

// Different phrases spoken by Drago in various languages.
var (
dragoAmericanEnglishPhrase = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -158,6 +164,7 @@ var (
Value: "然後"}
)

// dragoPhrase represents Drago's phrases in different languages.
var (
dragoPhrase = nook.Languages{
language.AmericanEnglish: dragoAmericanEnglishPhrase,
Expand All @@ -175,6 +182,7 @@ var (
language.TraditionalChinese: dragoTraditionalChinesePhrase}
)

// Drago represents the character Drago with his complete information.
var (
Drago = nook.Villager{
Character: dragoCharacter,
Expand Down
8 changes: 8 additions & 0 deletions character/alligator/gayle.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ import (
"golang.org/x/text/language"
)

// gayleBirthday represents Gayle's birthday (May 17th).
var (
gayleBirthday = nook.Birthday{
Day: 17,
Month: time.May}
)

// gayleCode represents Gayle's unique code ("crd07").
var (
gayleCode = nook.Code{
Value: "crd07"}
)

// Different names for Gayle in various languages.
var (
gayleAmericanEnglishName = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -76,6 +79,7 @@ var (
Value: "愛莉"}
)

// gayleName represents Gayle's name in different languages.
var (
gayleName = nook.Languages{
language.AmericanEnglish: gayleAmericanEnglishName,
Expand All @@ -93,6 +97,7 @@ var (
language.TraditionalChinese: gayleTraditionalChineseName}
)

// gayleCharacter represents Gayle's character information.
var (
gayleCharacter = nook.Character{
Animal: animal.Alligator,
Expand All @@ -104,6 +109,7 @@ var (
Special: false}
)

// Different phrases spoken by Gayle in various languages.
var (
gayleAmericanEnglishPhrase = nook.Name{
Language: language.AmericanEnglish,
Expand Down Expand Up @@ -158,6 +164,7 @@ var (
Value: "鱷莉"}
)

// gaylePhrase represents Gayle's phrases in different languages.
var (
gaylePhrase = nook.Languages{
language.AmericanEnglish: gayleAmericanEnglishPhrase,
Expand All @@ -175,6 +182,7 @@ var (
language.TraditionalChinese: gayleTraditionalChinesePhrase}
)

// Gayle represents the character Gayle with her complete information.
var (
Gayle = nook.Villager{
Character: gayleCharacter,
Expand Down
Loading
Loading