Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
predators (#437)
Browse files Browse the repository at this point in the history
* init

* huntership

* upd

* upd

* upd

* upd

* upd

* upd

* upd

* upd

* upd

* upd

* upd

* upd

* upd

* smartdisc

* upd...

* upd?

* hellhound

* caster fix

* translator

* map fixes

* map fixes

* translator

* falcon fix

* hair fix

* radio fix

* upd

* upd

* pre equip dupe fix

* caster buff

* upd

* balance

* orbit

* equip

* fixes

* upd

* upd

* data_huds

* hud

* surgery

* scanner fix

* item verbs

* upd

* config issues

* surgery

* Update _radio.dm

* Update mobs.dm

* Update flavor_misc.dm

* Update emote.dm

* Update human_defines.dm

* Update dbcore.dm

* hugger_egg

* abilities

* facehuggers.dm

* surgery

* Update yaut_items.dm

* Update sentries.dm

* Update hive_threat.dm

* Update _game_mode.dm

* Update facehuggers.dm

* Update yautja.dm

* Update human_attackhand.dm

* heal_pack

* Update xenomorph.dm

* constructions

* Update minimaps.dm

* Update yautja.dm

* Update includes.dm

* Update yautja.dm

* unused proc

* cryo

* Revert "cryo"

This reverts commit ff4dba8.

* cryo

* human defines

* Update yautja_rope.dm

* Update yaut_weapons.dm

* Update yaut_weapons.dm

* text

* Update yaut_mask.dm

* upd

* damage_mod

* Update attack_alien.dm

* Update apc.dm

* Update matrices.dm

* Update unsorted.dm

* proc

* Update data_huds.dm

* Revert "proc"

This reverts commit ccac8f7.

* proc

* Update new_player.dm

* Update maintenance_tools.dm

* multitool

* tiles

* Update sheet_types.dm

---------

Co-authored-by: Blundir <[email protected]>
  • Loading branch information
definitelynotspaghetti and Blundir authored Jun 18, 2024
1 parent 8ff0c2c commit ecaf6fd
Show file tree
Hide file tree
Showing 265 changed files with 20,380 additions and 143 deletions.
19 changes: 19 additions & 0 deletions SQL/tgmc-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,25 @@ CREATE TABLE IF NOT EXISTS `connection_log` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

CREATE TABLE IF NOT EXISTS `clan` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) DEFAULT NULL,
`description` varchar(2048) NOT NULL,
`honor` int(11) DEFAULT 0,
`color` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

CREATE TABLE IF NOT EXISTS `clan_player` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`byond_ckey` varchar(32) DEFAULT NULL,
`clan_rank` int(11) DEFAULT 1,
`permissions` int(11) DEFAULT 1,
`clan_id` int(11) DEFAULT 0,
`honor` int(11) DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- Data exporting was unselected.
-- Dumping structure for table feedback.death
CREATE TABLE IF NOT EXISTS `death` (
Expand Down
Loading

0 comments on commit ecaf6fd

Please sign in to comment.