0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 16:22:44 +00:00

Add initial Mongoose material

This commit is contained in:
David Bolack
2025-07-16 21:34:42 -05:00
parent ca53cb4700
commit 7ea6557625
3 changed files with 62 additions and 8 deletions

View File

@@ -8,6 +8,7 @@ const LicenseGenGNU = require('./snippets/licenseGNU.gen.js');
const LicenseGen = require('./snippets/license.gen.js');
const LicenseGenAelf = require('./snippets/licenseAELF.js');
const LicenseDTTRPGGCC = require('./snippets/licenseDTRPGCC.gen.js');
const LicenseMongoosePublishing = require('./snippets/licenseMongoose.gen.js');
const dedent = require('dedent-tabs').default;
const TableOfContentsGen = require('./snippets/tableOfContents.gen.js');
const indexGen = require('./snippets/index.gen.js');
@@ -673,6 +674,16 @@ module.exports = [
gen : LicenseDTTRPGGCC.ulissesSpieleCompanyPhoenixColophon,
},
{
name : "Traveller's Aid Society",
subsnippets : [
{
name : "Legal Statement",
gen : LicenseMongoosePublishing.TASLegal,
}
]
}
]
},
{
@@ -718,6 +729,34 @@ module.exports = [
gen : LicenseGen.mit,
},
{
name : 'Mongoose Publishing Fair Use',
icon : 'fas fa-mongoosepub',
subsnippets : [
{
name : 'Long Form Fair Use',
icon : null,
gen : LicenseMongoosePublishing.fairUseLong,
},
{
name : 'Traveller Fair Use',
icon : null,
gen : LicenseMongoosePublishing.fairUseTraveller,
},
{
name : '2300 AD Fair Use',
icon : null,
gen : LicenseMongoosePublishing.fairUse2300AD,
},
{
name : 'Twilight 2000 Fair Use',
icon : null,
gen : LicenseMongoosePublishing.fairUseTwilight2000,
},
]
},
{
name : 'ORC Notice',
icon : 'fas fa-Paizo',
@@ -1144,9 +1183,4 @@ module.exports = [
},
];
// Recontact after first of year
// {
// name : "Travellers Aid Society Colophon",
// gen : LicenseDTTRPGGCC.mongooseTravellersAidSocietyColophon,
// },

View File

@@ -168,9 +168,6 @@ module.exports = {
Distributed through the Hero Kids Creator's Guild at DriveThruRPG.
`;
},
// Mongoose's version of Traveller's Aid Society - Verify Logo and access
// Recontact after first of 2025
// mongooseTravellersAidSocietyColophon : `This product was created under license. Traveller and its logo are trademarks of Far Future Enterprises. This work contains material that is copyright Mongoose Publishing and/or other authors. Such material is used with permission under the Community Content Agreement for The Travellers' Aid Society.`,
// Monte Cook's Cypher License
monteCookCypherCover : `Requires the Cypher System Rulebook from Monte Cook Games. Distributed through the Cypher System CreatorTM at DriveThruRPG.`,
monteCookCypherColophon : function() {

View File

@@ -0,0 +1,23 @@
/* eslint-disable max-lines */
const _ = require('lodash');
const dedent = require('dedent');
// AELF License
module.exports = {
fairUseLong : function() {
return `The Traveller, 2300AD and Twilight: 2000 games in all forms are owned by Mongoose Publishing. Copyright 1977 - 2024 Mongoose Publishing. Traveller is a registered trademark of Mongoose Publishing. Mongoose Publishing permits web sites and fanzines for this game, provided it contains this notice, that Mongoose Publishing is notified, and subject to a withdrawal of permission on 90 days notice. The contents of this site are for personal, non-commercial use only. Any use of Mongoose Publishing's copyrighted material or trademarks anywhere on this web site and its files should not be viewed as a challenge to those copyrights or trademarks. In addition, any program/articles/file on this site cannot be republished or distributed without the consent of the author who contributed it.`;
},
fairUseTraveller : function() {
return `The Traveller game in all forms is owned by Mongoose Publishing. Copyright 1977 - 2024 Mongoose Publishing.`;
},
fairUse2300AD : function() {
return `The 2300AD game in all forms is owned by Mongoose Publishing. Copyright 1986 - 2024 Mongoose Publishing.`;
},
fairUseTwilight2000 : function() {
return `The Twilight: 2000 game in all forms is owned by Mongoose Publishing. Copyright 1984 - 2024 Mongoose Publishing.`;
},
TASLegal : function(){
return `This product was created under license. Traveller and its logo are trademarks of Mongoose Publishing. This work contains material that is copyright Mongoose Publishing and/or other authors. Such material is used with permission under the Community Content Agreement for The Travellers' Aid Society.`;
}
};