diff options
author | Traesh <nicolas.queniro@gmail.com> | 2024-10-06 14:36:32 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-10-06 14:36:32 +0200 |
commit | adbe74a1a466b3af257b5c04a0e6c7a6d28c51ac (patch) | |
tree | 5e52a991c91c41cbf335330fb6889e66f8d396b2 /sql | |
parent | 81276097648abe484d720c8ee9e3e77173825c8c (diff) |
Core/DataStores: Load FlightCapability.db2
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/hotfixes/master/2024_10_06_00_hotfixes.sql | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2024_10_06_00_hotfixes.sql b/sql/updates/hotfixes/master/2024_10_06_00_hotfixes.sql new file mode 100644 index 00000000000..9e841bf32ad --- /dev/null +++ b/sql/updates/hotfixes/master/2024_10_06_00_hotfixes.sql @@ -0,0 +1,34 @@ +-- +-- Table structure for table `flight_capability` +-- +DROP TABLE IF EXISTS `flight_capability`; +CREATE TABLE `flight_capability` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `AirFriction` float NOT NULL DEFAULT '0', + `MaxVel` float NOT NULL DEFAULT '0', + `Unknown1000_2` float NOT NULL DEFAULT '0', + `DoubleJumpVelMod` float NOT NULL DEFAULT '0', + `LiftCoefficient` float NOT NULL DEFAULT '0', + `GlideStartMinHeight` float NOT NULL DEFAULT '0', + `AddImpulseMaxSpeed` float NOT NULL DEFAULT '0', + `BankingRateMin` float NOT NULL DEFAULT '0', + `BankingRateMax` float NOT NULL DEFAULT '0', + `PitchingRateDownMin` float NOT NULL DEFAULT '0', + `PitchingRateDownMax` float NOT NULL DEFAULT '0', + `PitchingRateUpMin` float NOT NULL DEFAULT '0', + `PitchingRateUpMax` float NOT NULL DEFAULT '0', + `TurnVelocityThresholdMin` float NOT NULL DEFAULT '0', + `TurnVelocityThresholdMax` float NOT NULL DEFAULT '0', + `SurfaceFriction` float NOT NULL DEFAULT '0', + `OverMaxDeceleration` float NOT NULL DEFAULT '0', + `Unknown1000_17` float NOT NULL DEFAULT '0', + `Unknown1000_18` float NOT NULL DEFAULT '0', + `Unknown1000_19` float NOT NULL DEFAULT '0', + `Unknown1000_20` float NOT NULL DEFAULT '0', + `Unknown1000_21` float NOT NULL DEFAULT '0', + `LaunchSpeedCoefficient` float NOT NULL DEFAULT '0', + `VigorRegenMaxVelCoefficient` float NOT NULL DEFAULT '0', + `SpellID` int NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |