diff --git a/code/check.ts b/code/check.ts index 8da5415..ec8d5e0 100644 --- a/code/check.ts +++ b/code/check.ts @@ -25,9 +25,9 @@ async function getContributor() { } const TEAM_DIR = path.resolve(process.cwd(), "contributors"); -const PROJECTS_FILE = path.resolve( +const PROJECTS_DIR = path.resolve( process.cwd(), - "contributors/_schema/projects.ts" + "contributors/_schema/projects" ); const SCHEMA_FILE = path.resolve( process.cwd(), @@ -209,8 +209,8 @@ async function printResults( console.log( ` • Project names and roles must match those in ./${path.relative( process.cwd(), - PROJECTS_FILE - )}` + PROJECTS_DIR + )}/` ); console.log( ` • Ensure all required fields (${Object.entries(Contributor.shape) @@ -281,9 +281,15 @@ function startWatchMode(): void { ); watchers.push(teamWatcher); - const projectsWatcher = watch(PROJECTS_FILE, () => { - runValidation(true); - }); + const projectsWatcher = watch( + PROJECTS_DIR, + { recursive: true }, + (eventType, filename) => { + if (filename && filename.endsWith(".ts")) { + runValidation(true); + } + } + ); watchers.push(projectsWatcher); const schemaWatcher = watch(SCHEMA_FILE, () => { diff --git a/contributors/_schema/projects.ts b/contributors/_schema/projects.ts deleted file mode 100644 index bc307dd..0000000 --- a/contributors/_schema/projects.ts +++ /dev/null @@ -1,66 +0,0 @@ -export const PROJECTS = [ - "Volume 0 Kickstarter", - "Volume 0", - // TODO: rename to "Websites" - // TODO: must be changed for all relevant team member .yaml files - // TODO: fujoweb.dev, fujocoded.com, etc. as sub-parts - "Websites", - "Volume 0 Issue 1", - "Fandom Cookies", - "FujoCoded", - "Learn@", - "Code Contributor", -] as const; -export type Project = (typeof PROJECTS)[number]; - -export const VOLUME_0_ISSUE_1_ROLES = [ - "Technical Writer", - "Scenario Writer", - "Beta Reading Coordinator", - "Beta Reader", - "Proofreader", - "Artist", - "Tasks Coordinator", - "Communications", - "Project Management", - "Character Designer", - "Additional Coding", - "Data Collection & Entry", -]; - -export const WEBSITES_ROLES = ["fujoweb.dev", "fujocoded.com"]; - -export const FUJOCODED_ROLES = ["HimeOps", "FujoCoded"]; - -export const FANDOM_COOKIES_ROLES = [ - "Artist", - "Extra", - "Alt Text", - "Programming", - "Digital Item Pack Assembly", - "Additional Research, Feedback, Development, and Assistance", - "Digital Item Pack Wallpapers", - "Extra Hands (and Brains)", - "CSS & Design", - "Art Direction", - "Project Management", - "Cookie Catcher Design", - "Promo Campaign Assistance", - "Feedback", -]; - -export const LEARN_AT_ROLES = ["Writers Coordinator", "Article Writer"]; -export const CODE_CONTRIBUTOR_ROLES = ["Documentation", "Maintainer"]; - -export const PROJECT_ROLES: Record = { - "Volume 0 Issue 1": VOLUME_0_ISSUE_1_ROLES, - "Volume 0 Kickstarter": [], - "Volume 0": [], - Websites: WEBSITES_ROLES, - "Fandom Cookies": FANDOM_COOKIES_ROLES, - FujoCoded: FUJOCODED_ROLES, - "Learn@": LEARN_AT_ROLES, - "Code Contributor": CODE_CONTRIBUTOR_ROLES, -}; - -export default PROJECTS; diff --git a/contributors/_schema/projects/fandom-cookies.ts b/contributors/_schema/projects/fandom-cookies.ts new file mode 100644 index 0000000..f967521 --- /dev/null +++ b/contributors/_schema/projects/fandom-cookies.ts @@ -0,0 +1,16 @@ +export const FANDOM_COOKIES_ROLES = [ + "Additional Research, Feedback, Development, and Assistance", + "Alt Text", + "Art Direction", + "Artist", + "Cookie Catcher Design", + "CSS & Design", + "Digital Item Pack Assembly", + "Digital Item Pack Wallpapers", + "Extra", + "Extra Hands (and Brains)", + "Feedback", + "Programming", + "Project Management", + "Promo Campaign Assistance", +]; diff --git a/contributors/_schema/projects/fujoguide.ts b/contributors/_schema/projects/fujoguide.ts new file mode 100644 index 0000000..bc3a5d3 --- /dev/null +++ b/contributors/_schema/projects/fujoguide.ts @@ -0,0 +1,50 @@ +export const VOLUME_0_KICKSTARTER_ROLES = [ + "Additional Art & Layout", + "Additional Research, Feedback, Development, and Assistance", + "Art Director", + "Artist", + "Character Designer", + "Editor", + "Graphic Design", + "Lead Research", + "Merch Designer", + "Project Lead", + "Project Organizing", + "QA Testing", + "Sensitivity Reading", + "Social Media & Marketing", + "Technical Writer", + "Writer", +]; + +export const VOLUME_0_ROLES = [ + "Additional Coding", + "Artist", + "Beta Reader", + "Beta Reading Coordinator", + "Beta Wrangler", + "Character Designer", + "Editor", + "Project Lead", + "Project Organizing", + "Technical Writer", + "The One Who Talks With The Lawyers", + "Writer", +]; + +export const VOLUME_0_ISSUE_1_ROLES = [ + "Additional Coding", + "Artist", + "Beta Reader", + "Beta Reading Coordinator", + "Character Designer", + "Communications", + "Data Collection & Entry", + "Project Management", + "Proofreader", + "Scenario Writer", + "Tasks Coordinator", + "Technical Writer", +]; + +export const WEBSITES_ROLES = ["fujoweb.dev", "fujocoded.com"]; diff --git a/contributors/_schema/projects/index.ts b/contributors/_schema/projects/index.ts new file mode 100644 index 0000000..2382c5b --- /dev/null +++ b/contributors/_schema/projects/index.ts @@ -0,0 +1,46 @@ +import { + VOLUME_0_KICKSTARTER_ROLES, + VOLUME_0_ROLES, + VOLUME_0_ISSUE_1_ROLES, + WEBSITES_ROLES, +} from "./fujoguide"; + +import { FANDOM_COOKIES_ROLES } from "./fandom-cookies"; + +export { + VOLUME_0_KICKSTARTER_ROLES, + VOLUME_0_ROLES, + VOLUME_0_ISSUE_1_ROLES, + WEBSITES_ROLES, +} from "./fujoguide"; + +export { FANDOM_COOKIES_ROLES } from "./fandom-cookies"; + +export const FUJOCODED_ROLES = ["HimeOps", "FujoCoded"]; +export const LEARN_AT_ROLES = ["Article Writer", "Writers Coordinator"]; +export const CODE_CONTRIBUTOR_ROLES = ["Documentation", "Maintainer"]; + +export const PROJECTS = [ + "Volume 0 Kickstarter", + "Volume 0", + "Volume 0 Issue 1", + "Websites", + "Fandom Cookies", + "FujoCoded", + "Learn@", + "Code Contributor", +] as const; +export type Project = (typeof PROJECTS)[number]; + +export const PROJECT_ROLES: Record = { + "Volume 0 Kickstarter": VOLUME_0_KICKSTARTER_ROLES, + "Volume 0": VOLUME_0_ROLES, + "Volume 0 Issue 1": VOLUME_0_ISSUE_1_ROLES, + Websites: WEBSITES_ROLES, + "Fandom Cookies": FANDOM_COOKIES_ROLES, + FujoCoded: FUJOCODED_ROLES, + "Learn@": LEARN_AT_ROLES, + "Code Contributor": CODE_CONTRIBUTOR_ROLES, +}; + +export default PROJECTS; diff --git a/contributors/argent.yaml b/contributors/argent.yaml new file mode 100644 index 0000000..3832943 --- /dev/null +++ b/contributors/argent.yaml @@ -0,0 +1,8 @@ +name: Argent +avatar: "./avatars/default.png" +type: community +aliases: + - codeargent +roles: + Volume 0 Issue 1: + - Beta Reader diff --git a/contributors/avatars/8190.png b/contributors/avatars/8190.png new file mode 100644 index 0000000..155e670 Binary files /dev/null and b/contributors/avatars/8190.png differ diff --git a/contributors/avatars/brokemycrown.jpg b/contributors/avatars/brokemycrown.jpg new file mode 100644 index 0000000..f3404c7 Binary files /dev/null and b/contributors/avatars/brokemycrown.jpg differ diff --git a/contributors/avatars/citro.webp b/contributors/avatars/citro.webp new file mode 100644 index 0000000..3b0efe3 Binary files /dev/null and b/contributors/avatars/citro.webp differ diff --git a/contributors/avatars/cmdonovann.png b/contributors/avatars/cmdonovann.png new file mode 100644 index 0000000..5df5966 Binary files /dev/null and b/contributors/avatars/cmdonovann.png differ diff --git a/contributors/avatars/elf-herself.png b/contributors/avatars/elf-herself.png new file mode 100644 index 0000000..8c55f1a Binary files /dev/null and b/contributors/avatars/elf-herself.png differ diff --git a/contributors/avatars/ererifan195.jpg b/contributors/avatars/ererifan195.jpg new file mode 100644 index 0000000..76f4bb6 Binary files /dev/null and b/contributors/avatars/ererifan195.jpg differ diff --git a/contributors/avatars/foxinboots.png b/contributors/avatars/foxinboots.png new file mode 100644 index 0000000..b38ebf5 Binary files /dev/null and b/contributors/avatars/foxinboots.png differ diff --git a/contributors/avatars/ikam177.jpg b/contributors/avatars/ikam177.jpg new file mode 100644 index 0000000..8c7345a Binary files /dev/null and b/contributors/avatars/ikam177.jpg differ diff --git a/contributors/avatars/kiwipon.png b/contributors/avatars/kiwipon.png new file mode 100644 index 0000000..0ac6ced Binary files /dev/null and b/contributors/avatars/kiwipon.png differ diff --git a/contributors/avatars/leedie.png b/contributors/avatars/leedie.png new file mode 100644 index 0000000..a36c23e Binary files /dev/null and b/contributors/avatars/leedie.png differ diff --git a/contributors/avatars/merelydovely.png b/contributors/avatars/merelydovely.png new file mode 100644 index 0000000..61aa0c4 Binary files /dev/null and b/contributors/avatars/merelydovely.png differ diff --git a/contributors/avatars/michelle.png b/contributors/avatars/michelle.png new file mode 100644 index 0000000..20d85cc Binary files /dev/null and b/contributors/avatars/michelle.png differ diff --git a/contributors/avatars/pamuya.png b/contributors/avatars/pamuya.png new file mode 100644 index 0000000..51bec1d Binary files /dev/null and b/contributors/avatars/pamuya.png differ diff --git a/contributors/avatars/rudy-tuesday.png b/contributors/avatars/rudy-tuesday.png new file mode 100644 index 0000000..67f1267 Binary files /dev/null and b/contributors/avatars/rudy-tuesday.png differ diff --git a/contributors/avatars/sgt-spank.jpg b/contributors/avatars/sgt-spank.jpg new file mode 100644 index 0000000..08cc4d9 Binary files /dev/null and b/contributors/avatars/sgt-spank.jpg differ diff --git a/contributors/avatars/slogbait.png b/contributors/avatars/slogbait.png new file mode 100644 index 0000000..b8cb4e7 Binary files /dev/null and b/contributors/avatars/slogbait.png differ diff --git a/contributors/avatars/spillingdown.png b/contributors/avatars/spillingdown.png new file mode 100644 index 0000000..8fa8bcf Binary files /dev/null and b/contributors/avatars/spillingdown.png differ diff --git a/contributors/avatars/the-bi-ballerina.png b/contributors/avatars/the-bi-ballerina.png new file mode 100644 index 0000000..0a7ce09 Binary files /dev/null and b/contributors/avatars/the-bi-ballerina.png differ diff --git a/contributors/avatars/thunder-the-wolf.jpg b/contributors/avatars/thunder-the-wolf.jpg new file mode 100644 index 0000000..e4b91f6 Binary files /dev/null and b/contributors/avatars/thunder-the-wolf.jpg differ diff --git a/contributors/avatars/tovanish.png b/contributors/avatars/tovanish.png new file mode 100644 index 0000000..3ab79ae Binary files /dev/null and b/contributors/avatars/tovanish.png differ diff --git a/contributors/avatars/vcat.jpg b/contributors/avatars/vcat.jpg new file mode 100644 index 0000000..f5667a6 Binary files /dev/null and b/contributors/avatars/vcat.jpg differ diff --git a/contributors/avatars/wiredferret.png b/contributors/avatars/wiredferret.png new file mode 100644 index 0000000..3e7c079 Binary files /dev/null and b/contributors/avatars/wiredferret.png differ diff --git a/contributors/brokemycrown.yaml b/contributors/brokemycrown.yaml new file mode 100644 index 0000000..4a90d0a --- /dev/null +++ b/contributors/brokemycrown.yaml @@ -0,0 +1,25 @@ +name: brokemycrown +avatar: ./avatars/brokemycrown.jpg +type: + - community + - contractor +roles: + Volume 0 Kickstarter: + - Art Director + - Artist + - role: Character Designer + details: Git & GitHub + Volume 0: + - role: Character Designer + details: Git & GitHub + - role: Artist + details: Full-body Git + - Beta Reader +contacts: + - https://linktr.ee/reanimatedheart + - https://www.patreon.com/reanimatedheartvn + - https://ko-fi.com/brokemycrown + - https://www.tumblr.com/doubledeadstudio + - https://twitter.com/DoubleDeadSt + - https://brokemycrown.bsky.social + - https://www.inprnt.com/gallery/brokemycrown/ diff --git a/contributors/candle.yaml b/contributors/candle.yaml new file mode 100644 index 0000000..a5e57bb --- /dev/null +++ b/contributors/candle.yaml @@ -0,0 +1,6 @@ +name: Candle +avatar: "./avatars/default.png" +type: community +roles: + Volume 0 Kickstarter: + - Additional Research, Feedback, Development, and Assistance diff --git a/contributors/citro.yaml b/contributors/citro.yaml new file mode 100644 index 0000000..de42280 --- /dev/null +++ b/contributors/citro.yaml @@ -0,0 +1,11 @@ +name: Citro +avatar: "./avatars/citro.webp" +type: community +roles: + Volume 0 Kickstarter: + - QA Testing + - Additional Research, Feedback, Development, and Assistance + Volume 0 Issue 1: + - Beta Reader +contacts: + - https://blorbo.social/@citro diff --git a/contributors/cmdonovann.yaml b/contributors/cmdonovann.yaml new file mode 100644 index 0000000..3ee7f3d --- /dev/null +++ b/contributors/cmdonovann.yaml @@ -0,0 +1,14 @@ +name: CMDonovann +avatar: "./avatars/cmdonovann.png" +type: community +roles: + Volume 0 Kickstarter: + - role: Character Designer + details: NPM & Yarn + - QA Testing + - Additional Research, Feedback, Development, and Assistance + Volume 0 Issue 1: + - Beta Reader +contacts: + - https://cmdonovann.neocities.org + - https://cmdonovann.tumblr.com diff --git a/contributors/elendraug.yaml b/contributors/elendraug.yaml index 80ebfba..f8dd597 100644 --- a/contributors/elendraug.yaml +++ b/contributors/elendraug.yaml @@ -1,10 +1,21 @@ name: Elendraug avatar: "./avatars/elendraug.png" -type: +type: - community roles: + Volume 0 Kickstarter: + - QA Testing + - Additional Research, Feedback, Development, and Assistance + Volume 0: + - Beta Reader + Volume 0 Issue 1: + - Data Collection & Entry + - Beta Reader + Websites: + - role: fujoweb.dev + details: Data Entry Fandom Cookies: - - role: Extra + - role: Extra details: Alt Text - Digital Item Pack Assembly - Cookie Catcher Design diff --git a/contributors/elf-herself.yaml b/contributors/elf-herself.yaml new file mode 100644 index 0000000..3e04f92 --- /dev/null +++ b/contributors/elf-herself.yaml @@ -0,0 +1,12 @@ +name: Elf Herself +avatar: "./avatars/elf-herself.png" +type: community +roles: + Volume 0 Kickstarter: + - Lead Research + Websites: + - role: fujoweb.dev + details: Copy Writer +contacts: + - https://elf.dreamwidth.org + - https://elfherself.bsky.social diff --git a/contributors/enigmalea.yaml b/contributors/enigmalea.yaml index a15be58..18543ec 100644 --- a/contributors/enigmalea.yaml +++ b/contributors/enigmalea.yaml @@ -1,18 +1,34 @@ name: enigmalea avatar: "./avatars/enigmalea.png" -type: +type: - community roles: + Volume 0 Kickstarter: + - Project Organizing + - Technical Writer + - Editor + - QA Testing + Volume 0: + - Project Organizing + - Technical Writer + - Editor + - Beta Wrangler + Volume 0 Issue 1: + - Technical Writer + - Beta Reading Coordinator + - Additional Coding + Websites: + - role: fujoweb.dev + details: Maintainer + - role: fujoweb.dev + details: Coder + - role: fujoweb.dev + details: Copy Writer Fandom Cookies: - Extra Hands (and Brains) contacts: - https://enigmalea.quest - - https://enigmalea.tumblr.com - - https://enigmalea.bsky.social - - url: https://easymode.im/@enigmalea - platform: firefish - username: enigmalea + - url: https://bsky.app/profile/enigmalea.quest + icon: simple-icons:bluesky - https://archiveofourown.org/users/enigmalea - - https://github.com/enigmalea - - https://enigmalea.dreamwidth.org - - https://ko-fi.com/enigmalea + - https://enigmalea.tumblr.com diff --git a/contributors/ererifan195.yaml b/contributors/ererifan195.yaml new file mode 100644 index 0000000..34b34da --- /dev/null +++ b/contributors/ererifan195.yaml @@ -0,0 +1,9 @@ +name: ererifan195 +avatar: "./avatars/ererifan195.jpg" +type: community +roles: + Volume 0 Kickstarter: + - Artist +contacts: + - https://bsky.app/profile/ererifan915.bsky.social + - https://ereriren.neocities.org diff --git a/contributors/essential-randomness.yaml b/contributors/essential-randomness.yaml index daf61d6..a8e53c8 100644 --- a/contributors/essential-randomness.yaml +++ b/contributors/essential-randomness.yaml @@ -1,13 +1,35 @@ name: Ms Boba alias: essential-randomness -type: +type: - founder avatar: "./avatars/essential-randomness.png" roles: + Volume 0 Kickstarter: + - Project Lead + - Writer + - Merch Designer + - Graphic Design + Volume 0: + - Project Lead + - role: Writer + details: Technical and Scenario + - The One Who Talks With The Lawyers + Volume 0 Issue 1: + - Technical Writer + - Scenario Writer + - role: Artist + details: Beta Sketches + Websites: + - role: fujoweb.dev + details: Web Mistress + - role: fujoweb.dev + details: Coder + - role: fujoweb.dev + details: Copy Writer Fandom Cookies: - - role: Programming + - role: Programming details: General Coding - - Cookie Catcher Design + - Cookie Catcher Design - Digital Item Pack Assembly contacts: - https://essentialrandomness.com diff --git a/contributors/foxinboots.yaml b/contributors/foxinboots.yaml new file mode 100644 index 0000000..aa290be --- /dev/null +++ b/contributors/foxinboots.yaml @@ -0,0 +1,11 @@ +name: foxinboots +avatar: ./avatars/foxinboots.png +type: community +roles: + Volume 0: + - Additional Coding +contacts: + - https://thefoxinboots.tumblr.com/ + - https://twitter.com/thefoxinboots + - https://www.instagram.com/foxinboots/ + - https://bsky.app/profile/foxinboots.bsky.social diff --git a/contributors/ikam177.yaml b/contributors/ikam177.yaml new file mode 100644 index 0000000..8a969db --- /dev/null +++ b/contributors/ikam177.yaml @@ -0,0 +1,16 @@ +name: ikam177 +avatar: "./avatars/ikam177.jpg" +type: community +roles: + Volume 0 Kickstarter: + - Artist + Volume 0 Issue 1: + - role: Artist + details: Boba-tan in Screen +contacts: + - https://amkitakk.be + - https://ikam177.bsky.social + - url: https://blorbo.social/@AmkiTakk + platform: mastodon + username: AmkiTakk + - https://ikam177.tumblr.com diff --git a/contributors/kiwipon.yaml b/contributors/kiwipon.yaml new file mode 100644 index 0000000..66d6153 --- /dev/null +++ b/contributors/kiwipon.yaml @@ -0,0 +1,13 @@ +name: kiwipon +avatar: "./avatars/kiwipon.png" +type: community +roles: + Volume 0 Kickstarter: + - Artist + Volume 0 Issue 1: + - role: Artist + details: We Can Do It! +contacts: + - https://twitter.com/kiwi_pon + - https://www.instagram.com/kiwipon + - https://www.patriciaviarts.com diff --git a/contributors/leedie.yaml b/contributors/leedie.yaml new file mode 100644 index 0000000..aa6f9aa --- /dev/null +++ b/contributors/leedie.yaml @@ -0,0 +1,12 @@ +name: Leedie +avatar: ./avatars/leedie.png +type: community +roles: + Websites: + - role: fujoweb.dev + details: Data Collector + Volume 0 Issue 1: + - Tasks Coordinator +contacts: + - https://twitter.com/pyhpyjka/ + - https://tarantasina.tumblr.com/ diff --git a/contributors/marinehaddock.yaml b/contributors/marinehaddock.yaml new file mode 100644 index 0000000..21e600e --- /dev/null +++ b/contributors/marinehaddock.yaml @@ -0,0 +1,6 @@ +name: MarineHaddock +avatar: "./avatars/default.png" +type: community +roles: + Volume 0 Issue 1: + - Beta Reader diff --git a/contributors/merelydovely.yaml b/contributors/merelydovely.yaml new file mode 100644 index 0000000..96dd1f2 --- /dev/null +++ b/contributors/merelydovely.yaml @@ -0,0 +1,16 @@ +name: Dove +avatar: ./avatars/merelydovely.png +type: community +roles: + Websites: + - role: fujoweb.dev + details: Copy Writer + Volume 0 Issue 1: + - Communications + - Beta Reader +contacts: + - https://twitter.com/merelydovely/ + - https://archiveofourown.org/users/merelydovely + - https://merelydovely.bsky.social + - https://starfieldcanvas.tumblr.com/ + - https://github.com/merelydovely diff --git a/contributors/michelle.yaml b/contributors/michelle.yaml new file mode 100644 index 0000000..1baabbc --- /dev/null +++ b/contributors/michelle.yaml @@ -0,0 +1,10 @@ +name: Michelle +avatar: "./avatars/michelle.png" +type: community +roles: + Volume 0 Kickstarter: + - QA Testing + - Additional Research, Feedback, Development, and Assistance +contacts: + - https://mizunotic.neocities.org + - https://www.tumblr.com/mizunotic diff --git a/contributors/moon.yaml b/contributors/moon.yaml new file mode 100644 index 0000000..85d7173 --- /dev/null +++ b/contributors/moon.yaml @@ -0,0 +1,6 @@ +name: Moon (AdmiralExclipse) +avatar: "./avatars/default.png" +type: community +roles: + Volume 0 Kickstarter: + - Sensitivity Reading diff --git a/contributors/mori.yaml b/contributors/mori.yaml new file mode 100644 index 0000000..fb7451b --- /dev/null +++ b/contributors/mori.yaml @@ -0,0 +1,6 @@ +name: Mori +avatar: "./avatars/default.png" +type: community +roles: + Volume 0 Issue 1: + - Beta Reader diff --git a/contributors/pamuya.yaml b/contributors/pamuya.yaml new file mode 100644 index 0000000..ab17560 --- /dev/null +++ b/contributors/pamuya.yaml @@ -0,0 +1,12 @@ +name: Pamuya +avatar: "./avatars/pamuya.png" +type: community +roles: + Volume 0 Kickstarter: + - Additional Research, Feedback, Development, and Assistance +contacts: + - https://twitter.com/PamuyaBlue + - https://PamuyaBlue.bsky.social + - https://www.tumblr.com/pamuyablue + - https://www.furaffinity.net/user/pamuya-the-blue + - https://archiveofourown.org/users/PamuyaBlucat diff --git a/contributors/playerprophet.yaml b/contributors/playerprophet.yaml new file mode 100644 index 0000000..9c81e1e --- /dev/null +++ b/contributors/playerprophet.yaml @@ -0,0 +1,10 @@ +name: playerprophet +avatar: "./avatars/default.png" +type: community +roles: + Volume 0 Kickstarter: + - Additional Research, Feedback, Development, and Assistance + Volume 0: + - Beta Reading Coordinator +contacts: + - https://playerprophet.com diff --git a/contributors/ria.yaml b/contributors/ria.yaml index 933ac24..b8c6048 100644 --- a/contributors/ria.yaml +++ b/contributors/ria.yaml @@ -1,12 +1,17 @@ name: ria -avatar: "./avatars/riazaia.png" -type: +avatar: ./avatars/riazaia.png +type: - community - contractor roles: + Volume 0: + - Additional Coding + Volume 0 Issue 1: + - Additional Coding Fandom Cookies: - - role: Programming + - role: Programming details: General Coding - Digital Item Pack Assembly contacts: - https://github.com/riazaia + - https://bsky.app/profile/riazaia.bsky.social diff --git a/contributors/rudy-tuesday.yaml b/contributors/rudy-tuesday.yaml new file mode 100644 index 0000000..5223e20 --- /dev/null +++ b/contributors/rudy-tuesday.yaml @@ -0,0 +1,11 @@ +name: rudy tuesday +avatar: "./avatars/rudy-tuesday.png" +type: community +roles: + Websites: + - role: fujoweb.dev + details: Coder + Volume 0 Issue 1: + - Beta Reader +contacts: + - https://rudytues.day diff --git a/contributors/secret-final-boss.yaml b/contributors/secret-final-boss.yaml index b55b973..e5f6b4a 100644 --- a/contributors/secret-final-boss.yaml +++ b/contributors/secret-final-boss.yaml @@ -1,7 +1,10 @@ name: Secret Final Boss avatar: "./avatars/secret-final-boss.png" -type: +type: - community roles: + Volume 0 Issue 1: + - Proofreader + - Beta Reader Fandom Cookies: - Extra Hands (and Brains) diff --git a/contributors/sgt-spank.yaml b/contributors/sgt-spank.yaml new file mode 100644 index 0000000..86f37e9 --- /dev/null +++ b/contributors/sgt-spank.yaml @@ -0,0 +1,18 @@ +name: sgt-spank +avatar: "./avatars/sgt-spank.jpg" +type: community +roles: + Volume 0 Kickstarter: + - Artist + - role: Character Designer + details: ARIA + Volume 0: + - role: Character Designer + details: ARIA + Volume 0 Issue 1: + - role: Artist + details: Catboy Bathwater Git +contacts: + - https://bsky.app/profile/sgt-spank.bsky.social + - https://twitter.com/sgtspank + - https://www.tumblr.com/sgt-spank diff --git a/contributors/slogbait.yaml b/contributors/slogbait.yaml new file mode 100644 index 0000000..050cdf5 --- /dev/null +++ b/contributors/slogbait.yaml @@ -0,0 +1,7 @@ +name: slogbait +avatar: "./avatars/slogbait.png" +type: community +roles: + Volume 0 Kickstarter: + - Project Organizing + - Additional Art & Layout diff --git a/contributors/spillingdown.yaml b/contributors/spillingdown.yaml new file mode 100644 index 0000000..c4094e0 --- /dev/null +++ b/contributors/spillingdown.yaml @@ -0,0 +1,19 @@ +name: spillingdown +avatar: "./avatars/spillingdown.png" +type: community +roles: + Volume 0 Kickstarter: + - Artist + - role: Character Designer + details: Terminal + Volume 0: + - role: Character Designer + details: Terminal +contacts: + - https://mappapapa.neocities.org + - url: https://mappapapa.neocities.org/comm/ + icon: "lucide:store" + username: mappapapa + - url: https://blorbo.social/@spillingdown + platform: mastodon + username: spillingdown diff --git a/contributors/the-bi-ballerina.yaml b/contributors/the-bi-ballerina.yaml new file mode 100644 index 0000000..bead5ee --- /dev/null +++ b/contributors/the-bi-ballerina.yaml @@ -0,0 +1,12 @@ +name: the-bi-ballerina +avatar: "./avatars/the-bi-ballerina.png" +type: community +roles: + Volume 0 Kickstarter: + - Social Media & Marketing +contacts: + - https://thebiballerina.tumblr.com + - https://thebiballerina.dreamwidth.org + - url: https://fandom.ink/@thebiballerina + platform: mastodon + username: thebiballerina diff --git a/contributors/thunder-the-wolf.yaml b/contributors/thunder-the-wolf.yaml new file mode 100644 index 0000000..7724d4a --- /dev/null +++ b/contributors/thunder-the-wolf.yaml @@ -0,0 +1,10 @@ +name: Thunder the Wolf +avatar: "./avatars/thunder-the-wolf.jpg" +type: community +roles: + Volume 0 Kickstarter: + - Additional Research, Feedback, Development, and Assistance + Volume 0 Issue 1: + - Beta Reader +contacts: + - https://thunder-the-ranger-wolf.tumblr.com diff --git a/contributors/tovanish.yaml b/contributors/tovanish.yaml new file mode 100644 index 0000000..c9981db --- /dev/null +++ b/contributors/tovanish.yaml @@ -0,0 +1,8 @@ +name: tovanish +avatar: "./avatars/tovanish.png" +type: community +roles: + Volume 0 Kickstarter: + - Additional Research, Feedback, Development, and Assistance +contacts: + - https://tovanish.bsky.social diff --git a/contributors/vcat.yaml b/contributors/vcat.yaml new file mode 100644 index 0000000..db86036 --- /dev/null +++ b/contributors/vcat.yaml @@ -0,0 +1,11 @@ +name: VCat +avatar: "./avatars/vcat.jpg" +type: + - community + - contractor +roles: + Volume 0 Kickstarter: + - Additional Research, Feedback, Development, and Assistance +contacts: + - https://virtuouscat.dev + - https://github.com/virtuous-cat diff --git a/contributors/wiredferret.yaml b/contributors/wiredferret.yaml new file mode 100644 index 0000000..9b7e0fc --- /dev/null +++ b/contributors/wiredferret.yaml @@ -0,0 +1,13 @@ +name: wiredferret +avatar: "./avatars/wiredferret.png" +type: community +roles: + Volume 0 Kickstarter: + - Technical Writer + - Editor +contacts: + - https://heidiwaterhouse.com + - https://wiredferret.bsky.social + - url: https://hachyderm.io/@wiredferret + platform: mastodon + username: wiredferret diff --git a/contributors/ymkse.yaml b/contributors/ymkse.yaml index eb74c27..27a2f7d 100644 --- a/contributors/ymkse.yaml +++ b/contributors/ymkse.yaml @@ -1,9 +1,19 @@ name: ymkse avatar: "./avatars/ymkse.jpg" -type: +type: - community - contractor roles: + Volume 0 Kickstarter: + - Artist + - role: Character Designer + details: HTML & CSS + Volume 0: + - role: Character Designer + details: HTML & CSS + Volume 0 Issue 1: + - role: Artist + details: Cover & HTML Maid Fandom Cookies: - role: Artist details: Boba Prophet, Cookie Run(away), Cookie-xplosion diff --git a/contributors/yuu.yaml b/contributors/yuu.yaml index 0d38c83..3d32816 100644 --- a/contributors/yuu.yaml +++ b/contributors/yuu.yaml @@ -3,6 +3,12 @@ avatar: "./avatars/yuu.png" type: - community roles: + Volume 0 Kickstarter: + - QA Testing + - Lead Research + Volume 0 Issue 1: + - Beta Reader + - Proofreader Fandom Cookies: - Extra Hands (and Brains) contacts: diff --git a/contributors/zzz8190.yaml b/contributors/zzz8190.yaml new file mode 100644 index 0000000..1e563b5 --- /dev/null +++ b/contributors/zzz8190.yaml @@ -0,0 +1,8 @@ +name: "8190" +avatar: "./avatars/8190.png" +type: community +roles: + Volume 0 Kickstarter: + - Additional Research, Feedback, Development, and Assistance +contacts: + - https://verygood.pictures/8190/entry