diff --git a/assets/fonts/apple_kid.ttf b/assets/fonts/apple_kid.ttf new file mode 100644 index 00000000..3495f799 Binary files /dev/null and b/assets/fonts/apple_kid.ttf differ diff --git a/assets/images/undertale/ness.png b/assets/images/undertale/ness.png new file mode 100644 index 00000000..68d6e186 Binary files /dev/null and b/assets/images/undertale/ness.png differ diff --git a/assets/json/undertale.json b/assets/json/undertale.json index 75621ddc..485d5725 100644 --- a/assets/json/undertale.json +++ b/assets/json/undertale.json @@ -6,6 +6,7 @@ "flowey", "gaster", "napstablook", + "ness", "papyrus", "sans", "temmie", diff --git a/commands/edit-image/undertale.js b/commands/edit-image/undertale.js index 8526c9a8..e1e510dc 100644 --- a/commands/edit-image/undertale.js +++ b/commands/edit-image/undertale.js @@ -14,6 +14,7 @@ registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'UndertaleSans. registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'pixelated-wingdings.ttf'), { family: 'Pixelated Wingdings' }); +registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'apple_kid.ttf'), { family: 'Apple Kid' }); module.exports = class UndertaleCommand extends Command { constructor(client) { @@ -61,6 +62,12 @@ module.exports = class UndertaleCommand extends Command { reason: 'Pixelated Wingdings Font', reasonURL: 'https://fontstruct.com/fontstructions/show/1218140/pixelated-wingdings' }, + { + name: 'EarthBound Central', + url: 'https://earthboundcentral.com/', + reason: 'Apple Kid Font', + reasonURL: 'https://earthboundcentral.com/2009/11/ultimate-earthbound-font-pack/' + }, { name: 'Overtime2005', url: 'https://github.com/Overtime2005', @@ -108,6 +115,9 @@ module.exports = class UndertaleCommand extends Command { case 'gaster': font = 'Pixelated Wingdings'; break; + case 'ness': + font = 'Apple Kid'; + break; case 'temmie': quote = this.client.registry.commands.get('temmie').temmize(quote); break; diff --git a/package.json b/package.json index 10d2a5e4..5d09a340 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "116.29.3", + "version": "116.29.4", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {