Lots of small changes

This commit is contained in:
lilyissillyyy
2025-08-26 22:30:54 -04:00
parent 5048fbe243
commit bda18aa3ae
11 changed files with 183 additions and 169 deletions
+9
View File
@@ -16,6 +16,14 @@ const batman = {
phase: 'Solid',
symbol: '🦇'
};
const jerktonium = {
name: 'Jerktonium',
atomic_mass: 240,
number: 1999,
period: 'Bikini Bottom',
phase: 'Solid',
symbol: 'Jt'
};
module.exports = class PeriodicTableCommand extends Command {
constructor(client) {
@@ -106,6 +114,7 @@ module.exports = class PeriodicTableCommand extends Command {
.get('https://raw.githubusercontent.com/Bowserinator/Periodic-Table-JSON/master/PeriodicTableJSON.json');
this.table = JSON.parse(text).elements;
this.table.unshift(batman);
this.table.unshift(jerktonium);
return this.table;
}
};