From 9daac6f1f0b88e8a41990bae0f71b54451c7772d Mon Sep 17 00:00:00 2001 From: "Claude (auto-RE)" Date: Wed, 29 Jul 2026 05:29:34 +0000 Subject: [PATCH] re: read the defaulted weapon stats out of live guest memory Canary backs the whole guest address space with one shared-memory file, so the game's RAM is readable from the host while it runs -- no debugger, no emulator patch. That turns the parked Route-B question (fields the IDXD omits because they sit at their default) from "unreachable" into a table lookup. gmem.py maps guest VAs into /dev/shm/xenia_memory_* via Xenia's fixed table and searches only the allocated extents, so a full-RAM scan is ~0.2 s. weapon_runtime.py finds the parsed objects by scanning for their vtable, then *solves* the struct layout instead of guessing it: every (field, offset, encoding) triple is scored against the disc records, and a binding is accepted only with zero contradictions -- and marked confirmed only when >=10 records agree on >=3 distinct values, because a field whose samples are all one number matches any offset holding that constant. Result: Weapon (0xc0) and Shell (0x200) mapped, 4393 values the disc does not carry, for all 126 weapons at 5 % save progress. Cross-checks hold -- the Arsenal DATA SHEET read 4 for wep_05/wep_60 Max. Lock Ons and the memory read agrees; the in-flight HUD's 06000/00300 match LoadingCount; all 252 objects are byte-identical across a screen change, so this is definition data, not state. Two findings fell out: `IsCharging = Yes` switches LoadingCount and TriggerShotCount to float32 (it partitions the 8 float-encoded records exactly), and two .tbl entries declare Shell_TCAF_Ship_AAGun with conflicting Power -- the runtime keeps the one that omits it. Where the defaulted values *come from* (the IDXD's undecoded binary node region vs code defaults) is not settled here; they vary per weapon, so they are not one constructor constant. Co-Authored-By: Claude Opus 5 (1M context) --- .gitignore | 1 + .../sylpheed-formats/examples/idxd_tokens.rs | 102 + docs/re/INDEX.md | 9 +- docs/re/captures/weapon-runtime-fields.csv | 7183 +++++++++++++++++ docs/re/structures/weapon-struct-runtime.md | 294 + tools/re-capture/gmem.py | 162 + tools/re-capture/weapon_runtime.py | 303 + 7 files changed, 8053 insertions(+), 1 deletion(-) create mode 100644 crates/sylpheed-formats/examples/idxd_tokens.rs create mode 100644 docs/re/captures/weapon-runtime-fields.csv create mode 100644 docs/re/structures/weapon-struct-runtime.md create mode 100644 tools/re-capture/gmem.py create mode 100644 tools/re-capture/weapon_runtime.py diff --git a/.gitignore b/.gitignore index 692ba45..72134dc 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ Thumbs.db # Trunk build output dist/ +__pycache__/ diff --git a/crates/sylpheed-formats/examples/idxd_tokens.rs b/crates/sylpheed-formats/examples/idxd_tokens.rs new file mode 100644 index 0000000..96be88b --- /dev/null +++ b/crates/sylpheed-formats/examples/idxd_tokens.rs @@ -0,0 +1,102 @@ +//! RE diagnostic: emit every `weapon\Weapon_*.tbl` in a pak as machine-readable +//! records, split at the sub-object boundaries the schema declares. +//! +//! An IDXD `.tbl` for a weapon holds `count` sub-records — a `Weapon` and its +//! `Shell` — flattened into one string pool. `sylpheed-cli pak dump` shows them +//! merged, which is ambiguous (both declare `ID`/`Name`). The title's schema +//! name pool gives the split point: the pool contains the literal type names +//! (`Weapon`, `Shell`), and each sub-record's fields follow its type name. +//! +//! Here we split on a type-name token appearing as a *key* position, so each +//! record is emitted with its own ID and field set: +//! +//! ```text +//! REC +//! F +//! ``` +//! +//! Run: cargo run --release -p sylpheed-formats --example idxd_tokens -- [types...] + +use sylpheed_formats::idxd::IdxdObject; +use sylpheed_formats::pak::PakArchive; + +fn is_number(s: &str) -> bool { + let s = s.strip_suffix(['f', 'F']).unwrap_or(s); + let t = s.strip_prefix(['-', '+']).unwrap_or(s); + !t.is_empty() && t.chars().all(|c| c.is_ascii_digit() || c == '.') +} + +/// `Yes`/`No`-style scalar literals are values, not field names, even though +/// they are identifier-shaped. +fn is_enum_value(s: &str) -> bool { + matches!(s, "Yes" | "No" | "YES" | "NO" | "On" | "Off" | "ON" | "OFF") +} + +fn is_key_like(s: &str) -> bool { + !s.is_empty() + && s.chars().all(|c| c.is_ascii_alphanumeric() || c == '_') + && s.chars().next().is_some_and(|c| c.is_ascii_alphabetic() || c == '_') + && !is_number(s) + && !is_enum_value(s) +} + +fn main() { + let mut args = std::env::args().skip(1); + let pak_path = args.next().expect("usage: idxd_tokens [TypeName...]"); + let types: Vec = { + let v: Vec = args.collect(); + if v.is_empty() { + vec!["Weapon".into(), "Shell".into()] + } else { + v + } + }; + + let pak = PakArchive::open(&pak_path).expect("open pak"); + for entry in pak.entries() { + let Ok(bytes) = pak.read(entry) else { continue }; + let Ok(obj) = IdxdObject::parse(&bytes) else { continue }; + let toks = obj.tokens(); + if !toks.iter().any(|t| t.starts_with("Weapon_")) { + continue; + } + + if std::env::var("SYLPH_RAW").is_ok() { + println!("RAW {:08x}", entry.name_hash); + for t in toks { + println!("T {t}"); + } + } + + // Sub-record boundaries: a bare type-name token. The first one is the + // schema's own declaration (`EnumWeapon`-style header lives in title + // code, not here), so we take every occurrence in order. + let mut bounds: Vec<(usize, &str)> = Vec::new(); + for (i, t) in toks.iter().enumerate() { + // The pool-start heuristic can glue one stray binary byte onto the + // first token ("YWeapon"), so match a short suffix, not equality. + if let Some(ty) = types + .iter() + .find(|ty| t == *ty || (t.ends_with(ty.as_str()) && t.len() <= ty.len() + 2)) + { + bounds.push((i, ty.as_str())); + } + } + for (n, &(start, ty)) in bounds.iter().enumerate() { + let end = bounds.get(n + 1).map(|b| b.0).unwrap_or(toks.len()); + let slice = &toks[start..end]; + // The record's own ID value is the token straight after its type + // name (`Shell` -> `Shell_DSaber_P_wep_01_Beam`). The `ID`/`Name` + // *keys* are interned once in the pool, so only the first record + // shows them -- position-of-key lookup would miss the rest. + let id = slice.get(1).map(|s| s.as_str()).unwrap_or("?"); + println!("REC {:08x} {n} {ty} {id}", entry.name_hash); + for i in 1..slice.len() { + let (k, v) = (slice[i].as_str(), slice[i - 1].as_str()); + if is_key_like(k) && (!is_key_like(v) || is_number(v)) { + println!("F {k} {v}"); + } + } + } + } +} diff --git a/docs/re/INDEX.md b/docs/re/INDEX.md index 7b04f57..265c6ce 100644 --- a/docs/re/INDEX.md +++ b/docs/re/INDEX.md @@ -21,9 +21,16 @@ Promote to a prose `structures/…md` file when a format needs behavioural notes | Fonts (ttf/otf/ttc) | ✅ | `sylpheed-formats/src/font.rs` | standard OpenType, parsed via ttf-parser | | XBG7 mesh | 🟡/❔ | `sylpheed-formats/src/mesh.rs` + `tests/mesh_disc.rs` ([xbg7](structures/xbg7-mesh.md)) | weapons/props: declaration-driven variable stride (36 models), GPU-confirmed. **Stage containers: 5662 sub-models across 22 stages** via content-anchored grouped pools (`stage_models`). Quantized hero bodies (DeltaSaber `f004`) still declined | | Capital-ship part placement | 🟡 | `sylpheed-formats/src/ship.rs` (static) + [runtime capture](ship-placement-runtime-capture.md) | hull placement static-exact; external parts approximate statically. **Runtime capture** (Canary F10 → VS-constant WorldView) gives ground truth — validated on `e106` destroyer; not yet baked into the viewer | -| Weapon fields defaulted on disc | ✅/🟡 | [runtime DATA SHEET](weapon-datasheet-runtime.md) | The Arsenal Gallery-Mode panel reads the live record: `Ammo Capacity` = `LoadingCount` ✅, `Max. Lock Ons` = `TriggerShotCount` ✅. Recovers `TriggerShotCount` for `wep_05`/`wep_60` (both **4**); brackets defaulted `Power`/`MaximumRange` via the letter classes. 9 of ~61 weapons reachable at 5 % save progress | +| Weapon fields defaulted on disc | ✅ | [runtime struct](structures/weapon-struct-runtime.md) · [DATA SHEET route](weapon-datasheet-runtime.md) | **Solved.** Canary maps guest RAM into `/dev/shm`, so the parsed `Weapon`/`Shell` objects are readable live; their layout is solved against disc ground truth (zero contradictions over 100+ records). All 126 weapons, exact numbers, no story progress needed — [4 393 values](captures/weapon-runtime-fields.csv) the disc does not carry. Supersedes the letter-bucket limit of the DATA SHEET route, which now serves as the independent cross-check | | UI screen layout (`.rat`) | ✅/🟡 | [ui-rat-layout](structures/ui-rat-layout.md) | One pak per UI screen; each RATC = one (context × language) build; every `.t32` sprite has a `.rat` **layout record** (BE u32; 1280×720 design space; scale/tint/X/Y, keyframes for animated elements, `opt ` link to the focused state). **The tutorial PAUSE menu and the title main menu both rebuild pixel-accurately from the disc.** `loop1.rat` (screen-level draw order) not yet decoded | +## Runtime / dynamic-capture technique + +| Technique | Conf. | Spec | Notes | +|-----------|-------|------|-------| +| Live guest-memory read | ✅ | [`tools/re-capture/gmem.py`](../../tools/re-capture/gmem.py) | Canary backs the guest address space with `/dev/shm/xenia_memory_*`; guest VAs map in through Xenia's fixed table. Full-RAM search ~0.2 s (sparse, `SEEK_DATA`). No debugger, no emulator patch, game keeps running | +| IDXD object layout solver | ✅ | [`tools/re-capture/weapon_runtime.py`](../../tools/re-capture/weapon_runtime.py) | Scan RAM for a class's vtable → enumerate its objects → brute-force `(field, offset, encoding)` against the disc records. Accepts a binding only on **zero** contradictions. Generalizes to any IDXD-backed definition | + ## Functions / code paths _None documented yet — populated during the dynamic-RE phase._ diff --git a/docs/re/captures/weapon-runtime-fields.csv b/docs/re/captures/weapon-runtime-fields.csv new file mode 100644 index 0000000..fe6e6a0 --- /dev/null +++ b/docs/re/captures/weapon-runtime-fields.csv @@ -0,0 +1,7183 @@ +class,id,field,offset,enc,value,source,conf +Weapon,Weapon_ADAN_AAFrigate_AAGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,ReticleType,0x010,u32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,ReticleType,0x010,u32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,ReticleType,0x010,u32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,ReticleType,0x010,u32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,ReticleType,0x010,u32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,ReticleType,0x010,u32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,ReticleType,0x010,u32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,ReticleType,0x010,u32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,ReticleType,0x010,u32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,ReticleType,0x010,u32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,ReticleType,0x010,u32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,ReticleType,0x010,u32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,ReticleType,0x010,u32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,ReticleType,0x010,u32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,ReticleType,0x010,u32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,ReticleType,0x010,u32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,ReticleType,0x010,u32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,ReticleType,0x010,u32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,ReticleType,0x010,u32,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,ReticleType,0x010,u32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,ReticleType,0x010,u32,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,ReticleType,0x010,u32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,ReticleType,0x010,u32,11,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,ReticleType,0x010,u32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,ReticleType,0x010,u32,8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,ReticleType,0x010,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,ReticleType,0x010,u32,9,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,ReticleType,0x010,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,ReticleType,0x010,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,ReticleType,0x010,u32,7,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,ReticleType,0x010,u32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,ReticleType,0x010,u32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,ReticleType,0x010,u32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_NULL,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_HBeam,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_Laser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,ReticleType,0x010,u32,4,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,ReticleType,0x010,u32,6,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,ReticleType,0x010,u32,2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,ReticleType,0x010,u32,3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,ReticleType,0x010,u32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,ReticleType,0x010,u32,5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,ReticleType,0x010,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,ReticleType,0x010,u32,7,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_ASMissile,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Gun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Gun_Player,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Laser,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile_Player,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_SubGun,ReticleType,0x010,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,SpecialWeaponType,0x01c,u32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,SpecialWeaponType,0x01c,u32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,SpecialWeaponType,0x01c,u32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,SpecialWeaponType,0x01c,u32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,SpecialWeaponType,0x01c,u32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_NULL,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_HBeam,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_Laser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,SpecialWeaponType,0x01c,u32,0,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_ASMissile,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Gun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Gun_Player,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Laser,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile_Player,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_SubGun,SpecialWeaponType,0x01c,u32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,LoadingCount,0x028,cnt,6000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,LoadingCount,0x028,cnt,300,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,LoadingCount,0x028,cnt,75,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,LoadingCount,0x028,cnt,600,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,LoadingCount,0x028,cnt,45,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,LoadingCount,0x028,cnt,180,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,LoadingCount,0x028,cnt,60,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,LoadingCount,0x028,cnt,3000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,LoadingCount,0x028,cnt,2250,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,LoadingCount,0x028,cnt,6,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,LoadingCount,0x028,cnt,24,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,LoadingCount,0x028,cnt,600,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,LoadingCount,0x028,cnt,100,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,LoadingCount,0x028,cnt,150,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,LoadingCount,0x028,cnt,120,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,LoadingCount,0x028,cnt,150,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,LoadingCount,0x028,cnt,600,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,LoadingCount,0x028,cnt,700,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,LoadingCount,0x028,cnt,144,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,LoadingCount,0x028,cnt,9,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,LoadingCount,0x028,cnt,5,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,LoadingCount,0x028,cnt,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,LoadingCount,0x028,cnt,1500,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,LoadingCount,0x028,cnt,30,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,LoadingCount,0x028,cnt,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,LoadingCount,0x028,cnt,240,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,LoadingCount,0x028,cnt,3000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,LoadingCount,0x028,cnt,1500,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,LoadingCount,0x028,cnt,2250,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,LoadingCount,0x028,cnt,5,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,LoadingCount,0x028,cnt,4000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,LoadingCount,0x028,cnt,200,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,LoadingCount,0x028,cnt,3000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,LoadingCount,0x028,cnt,1500,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,LoadingCount,0x028,cnt,200,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,LoadingCount,0x028,cnt,200,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,LoadingCount,0x028,cnt,1500,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,LoadingCount,0x028,cnt,150,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,LoadingCount,0x028,cnt,30,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,LoadingCount,0x028,cnt,1200,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,LoadingCount,0x028,cnt,300,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,LoadingCount,0x028,cnt,600,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,LoadingCount,0x028,cnt,750,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,LoadingCount,0x028,cnt,225,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,LoadingCount,0x028,cnt,180,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,LoadingCount,0x028,cnt,18,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,LoadingCount,0x028,cnt,75,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,LoadingCount,0x028,cnt,20,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,LoadingCount,0x028,cnt,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,LoadingCount,0x028,cnt,200,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,LoadingCount,0x028,cnt,1200,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,LoadingCount,0x028,cnt,20,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,LoadingCount,0x028,cnt,3000,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,LoadingCount,0x028,cnt,100,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,LoadingCount,0x028,cnt,200,disc,confirmed +Weapon,Weapon_NULL,LoadingCount,0x028,cnt,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,LoadingCount,0x028,cnt,600,disc,confirmed +Weapon,Weapon_S16Boss_Laser,LoadingCount,0x028,cnt,0,disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,LoadingCount,0x028,cnt,15,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,LoadingCount,0x028,cnt,30,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,LoadingCount,0x028,cnt,5000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,LoadingCount,0x028,cnt,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,LoadingCount,0x028,cnt,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,LoadingCount,0x028,cnt,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,LoadingCount,0x028,cnt,180,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,LoadingCount,0x028,cnt,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,LoadingCount,0x028,cnt,300,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,LoadingCount,0x028,cnt,5000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,LoadingCount,0x028,cnt,1000,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_Test_ASMissile,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_Test_Gun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_Test_Gun_Player,LoadingCount,0x028,cnt,1e+06,disc,confirmed +Weapon,Weapon_Test_Laser,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_Test_Missile,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_Test_Missile_Player,LoadingCount,0x028,cnt,32,disc,confirmed +Weapon,Weapon_Test_SubGun,LoadingCount,0x028,cnt,10000,disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,Interval,0x02c,f32,10,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,Interval,0x02c,f32,15,disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,Interval,0x02c,f32,15,disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,Interval,0x02c,f32,12,disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,Interval,0x02c,f32,15,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,Interval,0x02c,f32,10,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,Interval,0x02c,f32,20,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,Interval,0x02c,f32,20,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,Interval,0x02c,f32,20,disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,Interval,0x02c,f32,0.05,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,Interval,0x02c,f32,2.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,Interval,0x02c,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,Interval,0x02c,f32,3.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,Interval,0x02c,f32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,Interval,0x02c,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,Interval,0x02c,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,Interval,0x02c,f32,0.03,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,Interval,0x02c,f32,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,Interval,0x02c,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,Interval,0x02c,f32,3.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,Interval,0x02c,f32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,Interval,0x02c,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,Interval,0x02c,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,Interval,0x02c,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,Interval,0x02c,f32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,Interval,0x02c,f32,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,Interval,0x02c,f32,8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,Interval,0x02c,f32,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,Interval,0x02c,f32,8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,Interval,0x02c,f32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,Interval,0x02c,f32,0.02,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,Interval,0x02c,f32,8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,Interval,0x02c,f32,0.03,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,Interval,0x02c,f32,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,Interval,0x02c,f32,0.02,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,Interval,0x02c,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,Interval,0x02c,f32,0.04,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,Interval,0x02c,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,Interval,0x02c,f32,0.7,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,Interval,0x02c,f32,0.07,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,Interval,0x02c,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,Interval,0x02c,f32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,Interval,0x02c,f32,0.08,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,Interval,0x02c,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,Interval,0x02c,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,Interval,0x02c,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,Interval,0x02c,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,Interval,0x02c,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,Interval,0x02c,f32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,Interval,0x02c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,Interval,0x02c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,Interval,0x02c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,Interval,0x02c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,Interval,0x02c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,Interval,0x02c,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,Interval,0x02c,f32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,Interval,0x02c,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,Interval,0x02c,f32,0.05,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,Interval,0x02c,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_NULL,Interval,0x02c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_S16Boss_Laser,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,Interval,0x02c,f32,20,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,Interval,0x02c,f32,3,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,Interval,0x02c,f32,18,disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,Interval,0x02c,f32,10,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,Interval,0x02c,f32,10,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,Interval,0x02c,f32,10,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,Interval,0x02c,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,Interval,0x02c,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,Interval,0x02c,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,Interval,0x02c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,Interval,0x02c,f32,10,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,Interval,0x02c,f32,15,disc,confirmed +Weapon,Weapon_Test_ASMissile,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_Test_Gun,Interval,0x02c,f32,1.5,disc,confirmed +Weapon,Weapon_Test_Gun_Player,Interval,0x02c,f32,0.1,disc,confirmed +Weapon,Weapon_Test_Laser,Interval,0x02c,f32,2,disc,confirmed +Weapon,Weapon_Test_Missile,Interval,0x02c,f32,20,disc,confirmed +Weapon,Weapon_Test_Missile_Player,Interval,0x02c,f32,5,disc,confirmed +Weapon,Weapon_Test_SubGun,Interval,0x02c,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,ReadyInterval,0x030,f32,0.25,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,ReadyInterval,0x030,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,ReadyInterval,0x030,f32,0.25,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,ReadyInterval,0x030,f32,0.25,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,ReadyInterval,0x030,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,ReadyInterval,0x030,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,ReadyInterval,0x030,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,ReadyInterval,0x030,f32,0.25,disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,ReadyInterval,0x030,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,ReadyInterval,0x030,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,ReadyInterval,0x030,f32,0.02,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,ReadyInterval,0x030,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,ReadyInterval,0x030,f32,0.1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,ReadyInterval,0x030,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,ReadyInterval,0x030,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,ReadyInterval,0x030,f32,0.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,ReadyInterval,0x030,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,ReadyInterval,0x030,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_NULL,ReadyInterval,0x030,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_S16Boss_Laser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,ReadyInterval,0x030,f32,0.01,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,ReadyInterval,0x030,f32,0.01,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,ReadyInterval,0x030,f32,0.15,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,ReadyInterval,0x030,f32,0.2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,ReadyInterval,0x030,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,ReadyInterval,0x030,f32,0,disc,confirmed +Weapon,Weapon_Test_ASMissile,ReadyInterval,0x030,f32,1,disc,confirmed +Weapon,Weapon_Test_Gun,ReadyInterval,0x030,f32,0.25,disc,confirmed +Weapon,Weapon_Test_Gun_Player,ReadyInterval,0x030,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Laser,ReadyInterval,0x030,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile,ReadyInterval,0x030,f32,1,disc,confirmed +Weapon,Weapon_Test_Missile_Player,ReadyInterval,0x030,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_SubGun,ReadyInterval,0x030,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,Heating,0x034,f32,0.6,disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,Heating,0x034,f32,0.6,disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,Heating,0x034,f32,0.6,disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,Heating,0x034,f32,0.6,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,Heating,0x034,f32,0.6,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,Heating,0x034,f32,0.01625,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,Heating,0x034,f32,0.253333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,Heating,0x034,f32,0.0466667,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,Heating,0x034,f32,0.02,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,Heating,0x034,f32,0.008,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,Heating,0x034,f32,0.3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,Heating,0x034,f32,0.15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,Heating,0x034,f32,0.45,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,Heating,0x034,f32,0.0325,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,Heating,0x034,f32,0.007,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,Heating,0x034,f32,0.009,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,Heating,0x034,f32,0.008,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,Heating,0x034,f32,0.433333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,Heating,0x034,f32,0.0173333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,Heating,0x034,f32,0.03,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,Heating,0x034,f32,0.233333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,Heating,0x034,f32,0.266667,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,Heating,0x034,f32,0.05,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,Heating,0x034,f32,0.258333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,Heating,0x034,f32,0.8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,Heating,0x034,f32,0.0133333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,Heating,0x034,f32,0.0583333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,Heating,0x034,f32,0.125,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,Heating,0x034,f32,0.039,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,Heating,0x034,f32,0.3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,Heating,0x034,f32,0.02,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,Heating,0x034,f32,0.233,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_NULL,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,Heating,0x034,f32,0.06,disc,confirmed +Weapon,Weapon_S16Boss_Laser,Heating,0x034,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,Heating,0x034,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,Heating,0x034,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,Heating,0x034,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,Heating,0x034,f32,0.007,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,Heating,0x034,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,Heating,0x034,f32,0.3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,Heating,0x034,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,Heating,0x034,f32,0.2,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,Heating,0x034,f32,0.007,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,Heating,0x034,f32,0.02,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,Heating,0x034,f32,0.02,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,Heating,0x034,f32,0.02,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,Heating,0x034,f32,0.02,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,Heating,0x034,f32,0.6,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,Heating,0x034,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_ASMissile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_Test_Gun,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_Test_Gun_Player,Heating,0x034,f32,0.0001,disc,confirmed +Weapon,Weapon_Test_Laser,Heating,0x034,f32,0.5,disc,confirmed +Weapon,Weapon_Test_Missile,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_Test_Missile_Player,Heating,0x034,f32,0,disc,confirmed +Weapon,Weapon_Test_SubGun,Heating,0x034,f32,0.01,disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,Cooling,0x038,f32,0.14,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,Cooling,0x038,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,Cooling,0x038,f32,0.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,Cooling,0x038,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,Cooling,0x038,f32,0.07,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,Cooling,0x038,f32,0.1167,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,Cooling,0x038,f32,0.0833,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,Cooling,0x038,f32,0.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,Cooling,0x038,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,Cooling,0x038,f32,0.2,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,Cooling,0x038,f32,0.1667,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,Cooling,0x038,f32,0.14,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,Cooling,0x038,f32,0.35,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,Cooling,0x038,f32,0.3333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,Cooling,0x038,f32,0.125,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,Cooling,0x038,f32,0.1333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,Cooling,0x038,f32,0.175,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,Cooling,0x038,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,Cooling,0x038,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,Cooling,0x038,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,Cooling,0x038,f32,0.175,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,Cooling,0x038,f32,0.175,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,Cooling,0x038,f32,0.14,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,Cooling,0x038,f32,0.0667,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,Cooling,0x038,f32,0.14,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,Cooling,0x038,f32,0.333333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,Cooling,0x038,f32,0.07,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,Cooling,0x038,f32,0.14,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,Cooling,0x038,f32,0.25,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,Cooling,0x038,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,Cooling,0x038,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,Cooling,0x038,f32,0.1333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,Cooling,0x038,f32,0.0467,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,Cooling,0x038,f32,0.0833,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,Cooling,0x038,f32,0.3333,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,Cooling,0x038,f32,0.05,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,Cooling,0x038,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,Cooling,0x038,f32,0.175,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,Cooling,0x038,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,Cooling,0x038,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,Cooling,0x038,f32,0.05,disc,confirmed +Weapon,Weapon_NULL,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_S16Boss_Laser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,Cooling,0x038,f32,0.15,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,Cooling,0x038,f32,0.05,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_Test_ASMissile,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Gun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_Test_Gun_Player,Cooling,0x038,f32,0.5,disc,confirmed +Weapon,Weapon_Test_Laser,Cooling,0x038,f32,0.4,disc,confirmed +Weapon,Weapon_Test_Missile,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile_Player,Cooling,0x038,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_SubGun,Cooling,0x038,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,Mass,0x03c,f32,200,disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,Mass,0x03c,f32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,Mass,0x03c,f32,0.35,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,Mass,0x03c,f32,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,Mass,0x03c,f32,20,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,Mass,0x03c,f32,0.24,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,Mass,0x03c,f32,12.8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,Mass,0x03c,f32,42.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,Mass,0x03c,f32,3.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,Mass,0x03c,f32,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,Mass,0x03c,f32,7.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,Mass,0x03c,f32,4.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,Mass,0x03c,f32,20,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,Mass,0x03c,f32,0.65,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,Mass,0x03c,f32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,Mass,0x03c,f32,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,Mass,0x03c,f32,13.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,Mass,0x03c,f32,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,Mass,0x03c,f32,20,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,Mass,0x03c,f32,0.77,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,Mass,0x03c,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,Mass,0x03c,f32,0.33,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,Mass,0x03c,f32,1.65,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,Mass,0x03c,f32,35,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,Mass,0x03c,f32,20.7,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,Mass,0x03c,f32,1.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,Mass,0x03c,f32,0.85,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,Mass,0x03c,f32,1.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,Mass,0x03c,f32,1.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,Mass,0x03c,f32,0.63,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,Mass,0x03c,f32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,Mass,0x03c,f32,2.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,Mass,0x03c,f32,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,Mass,0x03c,f32,3.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,Mass,0x03c,f32,2.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,Mass,0x03c,f32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,Mass,0x03c,f32,14.7,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,Mass,0x03c,f32,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,Mass,0x03c,f32,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,Mass,0x03c,f32,10,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,Mass,0x03c,f32,25,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,Mass,0x03c,f32,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,Mass,0x03c,f32,9.6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,Mass,0x03c,f32,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,Mass,0x03c,f32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,Mass,0x03c,f32,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,Mass,0x03c,f32,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,Mass,0x03c,f32,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,Mass,0x03c,f32,45,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,Mass,0x03c,f32,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,Mass,0x03c,f32,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,Mass,0x03c,f32,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,Mass,0x03c,f32,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,Mass,0x03c,f32,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,Mass,0x03c,f32,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,Mass,0x03c,f32,24.8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,Mass,0x03c,f32,17,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,Mass,0x03c,f32,69,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,Mass,0x03c,f32,33,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,Mass,0x03c,f32,48,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,Mass,0x03c,f32,10,disc,confirmed +Weapon,Weapon_NULL,Mass,0x03c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_S16Boss_Laser,Mass,0x03c,f32,200,disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,Mass,0x03c,f32,200,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,Mass,0x03c,f32,100,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,Mass,0x03c,f32,100,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,Mass,0x03c,f32,200,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,Mass,0x03c,f32,200,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_Test_ASMissile,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_Test_Gun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_Test_Gun_Player,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_Test_Laser,Mass,0x03c,f32,200,disc,confirmed +Weapon,Weapon_Test_Missile,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_Test_Missile_Player,Mass,0x03c,f32,50,disc,confirmed +Weapon,Weapon_Test_SubGun,Mass,0x03c,f32,100,disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_NULL,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_S16Boss_AAGun,HitRatio,0x040,f32,0.5,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,HitRatio,0x040,f32,0.7,disc,confirmed +Weapon,Weapon_S16Boss_Laser,HitRatio,0x040,f32,0.8,disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_Test_ASMissile,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Gun,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_Test_Gun_Player,HitRatio,0x040,f32,0.9,disc,confirmed +Weapon,Weapon_Test_Laser,HitRatio,0x040,f32,1,disc,confirmed +Weapon,Weapon_Test_Missile,HitRatio,0x040,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile_Player,HitRatio,0x040,f32,0.7,disc,confirmed +Weapon,Weapon_Test_SubGun,HitRatio,0x040,f32,0.5,disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,TriggerShotCount,0x044,cnt,5,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,TriggerShotCount,0x044,cnt,3,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,TriggerShotCount,0x044,cnt,3,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,TriggerShotCount,0x044,cnt,3,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,TriggerShotCount,0x044,cnt,20,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,TriggerShotCount,0x044,cnt,9,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,TriggerShotCount,0x044,cnt,3,disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,TriggerShotCount,0x044,cnt,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,TriggerShotCount,0x044,cnt,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,TriggerShotCount,0x044,cnt,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,TriggerShotCount,0x044,cnt,22,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,TriggerShotCount,0x044,cnt,4,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,TriggerShotCount,0x044,cnt,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,TriggerShotCount,0x044,cnt,22,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,TriggerShotCount,0x044,cnt,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,TriggerShotCount,0x044,cnt,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,TriggerShotCount,0x044,cnt,14,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,TriggerShotCount,0x044,cnt,12,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,TriggerShotCount,0x044,cnt,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,TriggerShotCount,0x044,cnt,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,TriggerShotCount,0x044,cnt,80,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,TriggerShotCount,0x044,cnt,4,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,TriggerShotCount,0x044,cnt,16,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,TriggerShotCount,0x044,cnt,60,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,TriggerShotCount,0x044,cnt,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,TriggerShotCount,0x044,cnt,16,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,TriggerShotCount,0x044,cnt,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,TriggerShotCount,0x044,cnt,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,TriggerShotCount,0x044,cnt,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,TriggerShotCount,0x044,cnt,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,TriggerShotCount,0x044,cnt,4,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,TriggerShotCount,0x044,cnt,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,TriggerShotCount,0x044,cnt,40,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,TriggerShotCount,0x044,cnt,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,TriggerShotCount,0x044,cnt,1,defaulted-on-disc,confirmed +Weapon,Weapon_NULL,TriggerShotCount,0x044,cnt,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,TriggerShotCount,0x044,cnt,5,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,TriggerShotCount,0x044,cnt,14,disc,confirmed +Weapon,Weapon_S16Boss_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,TriggerShotCount,0x044,cnt,2,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,TriggerShotCount,0x044,cnt,4,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,TriggerShotCount,0x044,cnt,2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,TriggerShotCount,0x044,cnt,2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,TriggerShotCount,0x044,cnt,2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,TriggerShotCount,0x044,cnt,2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,TriggerShotCount,0x044,cnt,20,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,TriggerShotCount,0x044,cnt,2,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_Test_ASMissile,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_Test_Gun,TriggerShotCount,0x044,cnt,3,disc,confirmed +Weapon,Weapon_Test_Gun_Player,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_Test_Laser,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_Test_Missile,TriggerShotCount,0x044,cnt,1,disc,confirmed +Weapon,Weapon_Test_Missile_Player,TriggerShotCount,0x044,cnt,8,disc,confirmed +Weapon,Weapon_Test_SubGun,TriggerShotCount,0x044,cnt,32,disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,TriggerShotInterval,0x048,f32,0.25,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,TriggerShotInterval,0x048,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,TriggerShotInterval,0x048,f32,0.5,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,TriggerShotInterval,0x048,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,TriggerShotInterval,0x048,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,TriggerShotInterval,0x048,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,TriggerShotInterval,0x048,f32,0.025,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,TriggerShotInterval,0x048,f32,0.5,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,TriggerShotInterval,0x048,f32,0.5,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,TriggerShotInterval,0x048,f32,0.5,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,TriggerShotInterval,0x048,f32,0.5,disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,TriggerShotInterval,0x048,f32,0.1,disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,TriggerShotInterval,0x048,f32,0.5,disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,TriggerShotInterval,0x048,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,TriggerShotInterval,0x048,f32,0.01,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,TriggerShotInterval,0x048,f32,0.001,disc,confirmed +Weapon,Weapon_NULL,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,TriggerShotInterval,0x048,f32,0.1,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,TriggerShotInterval,0x048,f32,0.08,disc,confirmed +Weapon,Weapon_S16Boss_Laser,TriggerShotInterval,0x048,f32,1,disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,TriggerShotInterval,0x048,f32,0.2,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,TriggerShotInterval,0x048,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,TriggerShotInterval,0x048,f32,0.08,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,TriggerShotInterval,0x048,f32,0.08,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,TriggerShotInterval,0x048,f32,0.02,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,TriggerShotInterval,0x048,f32,0.5,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,TriggerShotInterval,0x048,f32,1.5,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,TriggerShotInterval,0x048,f32,0.08,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,TriggerShotInterval,0x048,f32,0.02,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,TriggerShotInterval,0x048,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,TriggerShotInterval,0x048,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,TriggerShotInterval,0x048,f32,0.08,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,TriggerShotInterval,0x048,f32,0.02,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,TriggerShotInterval,0x048,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,TriggerShotInterval,0x048,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,TriggerShotInterval,0x048,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,TriggerShotInterval,0x048,f32,0.08,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,TriggerShotInterval,0x048,f32,0.02,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,TriggerShotInterval,0x048,f32,0.08,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,TriggerShotInterval,0x048,f32,0.02,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,TriggerShotInterval,0x048,f32,0.25,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,TriggerShotInterval,0x048,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,TriggerShotInterval,0x048,f32,0.2,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,TriggerShotInterval,0x048,f32,0.08,disc,confirmed +Weapon,Weapon_Test_ASMissile,TriggerShotInterval,0x048,f32,0.5,disc,confirmed +Weapon,Weapon_Test_Gun,TriggerShotInterval,0x048,f32,0.1,disc,confirmed +Weapon,Weapon_Test_Gun_Player,TriggerShotInterval,0x048,f32,0.02,disc,confirmed +Weapon,Weapon_Test_Laser,TriggerShotInterval,0x048,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile_Player,TriggerShotInterval,0x048,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_SubGun,TriggerShotInterval,0x048,f32,0.02,disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,SprayAngle,0x050,deg,0.5,disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,SprayAngle,0x050,deg,0.5,disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,SprayAngle,0x050,deg,0.5,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,SprayAngle,0x050,deg,7,disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,SprayAngle,0x050,deg,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,SprayAngle,0x050,deg,20,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,SprayAngle,0x050,deg,30,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,SprayAngle,0x050,deg,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,SprayAngle,0x050,deg,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,SprayAngle,0x050,deg,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,SprayAngle,0x050,deg,30,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,SprayAngle,0x050,deg,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,SprayAngle,0x050,deg,20,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,SprayAngle,0x050,deg,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,SprayAngle,0x050,deg,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,SprayAngle,0x050,deg,8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,SprayAngle,0x050,deg,40,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,SprayAngle,0x050,deg,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,SprayAngle,0x050,deg,40,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,SprayAngle,0x050,deg,6,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,SprayAngle,0x050,deg,5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,SprayAngle,0x050,deg,10,disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,SprayAngle,0x050,deg,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,SprayAngle,0x050,deg,20,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,SprayAngle,0x050,deg,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,SprayAngle,0x050,deg,25,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,SprayAngle,0x050,deg,0.1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,SprayAngle,0x050,deg,0.5,disc,confirmed +Weapon,Weapon_NULL,SprayAngle,0x050,deg,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_S16Boss_HBeam,SprayAngle,0x050,deg,20,disc,confirmed +Weapon,Weapon_S16Boss_Laser,SprayAngle,0x050,deg,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,SprayAngle,0x050,deg,5,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,SprayAngle,0x050,deg,3,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,SprayAngle,0x050,deg,5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,SprayAngle,0x050,deg,5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,SprayAngle,0x050,deg,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,SprayAngle,0x050,deg,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,SprayAngle,0x050,deg,3,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,SprayAngle,0x050,deg,6,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,SprayAngle,0x050,deg,4,disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,SprayAngle,0x050,deg,10,disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,SprayAngle,0x050,deg,10,disc,confirmed +Weapon,Weapon_Test_ASMissile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_Test_Gun,SprayAngle,0x050,deg,1,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Gun_Player,SprayAngle,0x050,deg,1,disc,confirmed +Weapon,Weapon_Test_Laser,SprayAngle,0x050,deg,0.1,disc,confirmed +Weapon,Weapon_Test_Missile,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_Test_Missile_Player,SprayAngle,0x050,deg,15,disc,confirmed +Weapon,Weapon_Test_SubGun,SprayAngle,0x050,deg,1,disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,LockIntervalSingle,0x06c,f32,0.75,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,LockIntervalSingle,0x06c,f32,0.75,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,LockIntervalSingle,0x06c,f32,0.75,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,LockIntervalSingle,0x06c,f32,0.75,disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,LockIntervalSingle,0x06c,f32,99,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,LockIntervalSingle,0x06c,f32,0.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,LockIntervalSingle,0x06c,f32,1.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,LockIntervalSingle,0x06c,f32,1.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,LockIntervalSingle,0x06c,f32,0.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,LockIntervalSingle,0x06c,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,LockIntervalSingle,0x06c,f32,99,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,LockIntervalSingle,0x06c,f32,99,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,LockIntervalSingle,0x06c,f32,99,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,LockIntervalSingle,0x06c,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,LockIntervalSingle,0x06c,f32,1.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,LockIntervalSingle,0x06c,f32,0.9,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,LockIntervalSingle,0x06c,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,LockIntervalSingle,0x06c,f32,1.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,LockIntervalSingle,0x06c,f32,0.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_NULL,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_HBeam,LockIntervalSingle,0x06c,f32,0.02,disc,confirmed +Weapon,Weapon_S16Boss_Laser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,LockIntervalSingle,0x06c,f32,0.75,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,LockIntervalSingle,0x06c,f32,1.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,LockIntervalSingle,0x06c,f32,1.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,LockIntervalSingle,0x06c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,LockIntervalSingle,0x06c,f32,0.5,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,LockIntervalSingle,0x06c,f32,0,disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,LockIntervalSingle,0x06c,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_Test_ASMissile,LockIntervalSingle,0x06c,f32,0.75,disc,confirmed +Weapon,Weapon_Test_Gun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Gun_Player,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Laser,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile,LockIntervalSingle,0x06c,f32,0.75,disc,confirmed +Weapon,Weapon_Test_Missile_Player,LockIntervalSingle,0x06c,f32,1,disc,confirmed +Weapon,Weapon_Test_SubGun,LockIntervalSingle,0x06c,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_B_GunTurret,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_ASMissile,LockIntervalMulti,0x070,f32,0.05,disc,confirmed +Weapon,Weapon_ADAN_Attacker_S_NoseGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Battleship_BowChaser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Cruiser_BowChaser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Destroyer_BowChaser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Phantom_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Puppy_NoseGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_SDBattleship_BowChaser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAGunL,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_AAMissile,LockIntervalMulti,0x070,f32,0.05,disc,confirmed +Weapon,Weapon_ADAN_Ship_ASGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Ship_ASMissile,LockIntervalMulti,0x070,f32,0.05,disc,confirmed +Weapon,Weapon_ADAN_Turret_Cannon,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Turret_Missile,LockIntervalMulti,0x070,f32,0.05,disc,confirmed +Weapon,Weapon_ADAN_Turret_NoseGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_TypeQ_Beam,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_Vindicator_Rocket,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_01_Beam,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_02_Missile,LockIntervalMulti,0x070,f32,0.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_03_Cannon,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_04_Missile,LockIntervalMulti,0x070,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_05_ASMissile,LockIntervalMulti,0x070,f32,0.8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_07_Cannon,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_08_ASMissile,LockIntervalMulti,0x070,f32,0.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_09_Gun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_10_Gun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_11_Cannon,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_12_Rocket,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Child,LockIntervalMulti,0x070,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_13_Missile,LockIntervalMulti,0x070,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_14_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_19_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_23_Cannon,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_24_Beam,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_25_HBeam,LockIntervalMulti,0x070,f32,0.25,disc,confirmed +Weapon,Weapon_DSaber_P_wep_26_Missile,LockIntervalMulti,0x070,f32,0.8,disc,confirmed +Weapon,Weapon_DSaber_P_wep_27_ASMissile,LockIntervalMulti,0x070,f32,2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_28_Bomb,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Bomb,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_29_Child,LockIntervalMulti,0x070,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_30_ASMissile,LockIntervalMulti,0x070,f32,1.5,disc,confirmed +Weapon,Weapon_DSaber_P_wep_31_Bomb,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_32_Missile,LockIntervalMulti,0x070,f32,0.4,disc,confirmed +Weapon,Weapon_DSaber_P_wep_33_Gun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_34_HBeam,LockIntervalMulti,0x070,f32,0.1,disc,confirmed +Weapon,Weapon_DSaber_P_wep_35_Gun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_36_Bomb,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_37_Beam,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_38_Shotgun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_39_Beam,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_40_Gun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_41_Shotgun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_42_Shotgun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_43_Rocket,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_48_Cannon,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_50_Cannon,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_52_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_53_Beam,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_54_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_55_Rocket,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_56_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_57_Rocket,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_58_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_59_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_60_ASMissile,LockIntervalMulti,0x070,f32,1,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_62_Beam,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_66_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_67_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_68_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_69_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_70_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_71_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_80_Rocket,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_81_Missile,LockIntervalMulti,0x070,f32,0.2,disc,confirmed +Weapon,Weapon_DSaber_P_wep_82_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_83_Gun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_84_Cannon,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_DSaber_P_wep_85_Beam,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_NULL,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_AAGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_S16Boss_HBeam,LockIntervalMulti,0x070,f32,0.25,disc,confirmed +Weapon,Weapon_S16Boss_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Acropolis_BowChaser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_Missile,LockIntervalMulti,0x070,f32,0.05,disc,confirmed +Weapon,Weapon_TCAF_ArrowHead_NoseGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Battleship_BowChaser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Cruiser_BowChaser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,LockIntervalMulti,0x070,f32,1.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,LockIntervalMulti,0x070,f32,1.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile,LockIntervalMulti,0x070,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,LockIntervalMulti,0x070,f32,0.1,disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_Special_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_AAGunL,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_ASGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_TCAF_Ship_HBeam,LockIntervalMulti,0x070,f32,0.25,disc,confirmed +Weapon,Weapon_Test_ASMissile,LockIntervalMulti,0x070,f32,0.05,disc,confirmed +Weapon,Weapon_Test_Gun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Gun_Player,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Laser,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_Test_Missile,LockIntervalMulti,0x070,f32,0.05,disc,confirmed +Weapon,Weapon_Test_Missile_Player,LockIntervalMulti,0x070,f32,0.1,disc,confirmed +Weapon,Weapon_Test_SubGun,LockIntervalMulti,0x070,f32,0,defaulted-on-disc,confirmed +Weapon,Weapon_ADAN_AAFrigate_AAGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Attacker_B_GunTurret,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Attacker_S_ASMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Attacker_S_NoseGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Battleship_BowChaser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Cruiser_BowChaser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Destroyer_BowChaser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Phantom_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Puppy_NoseGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_SDBattleship_BowChaser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Ship_AAGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Ship_AAGunL,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Ship_AAMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Ship_ASGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Ship_ASMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Turret_Cannon,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Turret_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Turret_NoseGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_TypeQ_Beam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_ADAN_Vindicator_Rocket,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_01_Beam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_02_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_03_Cannon,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_04_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_05_ASMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_07_Cannon,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_08_ASMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_09_Gun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_10_Gun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_11_Cannon,MaximumCharging,0x09c,f32,15,disc,tentative +Weapon,Weapon_DSaber_P_wep_12_Rocket,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_13_Child,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_13_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_14_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_19_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_23_Cannon,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_24_Beam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_25_HBeam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_26_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_27_ASMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_28_Bomb,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_29_Bomb,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_29_Child,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_30_ASMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_31_Bomb,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_32_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_33_Gun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_34_HBeam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_35_Gun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_36_Bomb,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_37_Beam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_38_Shotgun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_39_Beam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_40_Gun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_41_Shotgun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_42_Shotgun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_43_Rocket,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_48_Cannon,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_50_Cannon,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_52_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_53_Beam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_54_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_55_Rocket,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_56_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_57_Rocket,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_58_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_59_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_60_ASMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_62_Beam,MaximumCharging,0x09c,f32,7,disc,tentative +Weapon,Weapon_DSaber_P_wep_66_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_67_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_68_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_69_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_70_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_71_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_80_Rocket,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_81_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_82_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_83_Gun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_84_Cannon,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_DSaber_P_wep_85_Beam,MaximumCharging,0x09c,f32,1.5,disc,tentative +Weapon,Weapon_NULL,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_S16Boss_AAGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_S16Boss_HBeam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_S16Boss_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_Acropolis_BowChaser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_ArrowHead_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_ArrowHead_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_ArrowHead_NoseGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_Battleship_BowChaser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_Cruiser_BowChaser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_ASMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_ASMissile_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Beam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Beam_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Bomb,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Bomb_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Cannon,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Cannon_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Gun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Gun_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Laser_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Missile_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_NoseGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_NoseGun_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Rocket,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Rocket_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Shotgun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Shotgun_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Special,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_Special_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_TwinGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_DeltaSaber_TwinGun_P,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_Ship_AAGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_Ship_AAGunL,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_Ship_ASGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_TCAF_Ship_HBeam,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_Test_ASMissile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_Test_Gun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_Test_Gun_Player,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_Test_Laser,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_Test_Missile,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_Test_Missile_Player,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Weapon,Weapon_Test_SubGun,MaximumCharging,0x09c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_ADAN_Ship_ASGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_ADAN_Turret_Cannon,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,DeleteFadeSpeed,0x00c,cnt,4.2039e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,DeleteFadeSpeed,0x00c,cnt,4.2039e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,DeleteFadeSpeed,0x00c,cnt,4.2039e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,DeleteFadeSpeed,0x00c,cnt,4.2039e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,DeleteFadeSpeed,0x00c,cnt,4.2039e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,DeleteFadeSpeed,0x00c,cnt,1.4013e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,DeleteFadeSpeed,0x00c,cnt,4.2039e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_NULL,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,DeleteFadeSpeed,0x00c,cnt,2,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,DeleteFadeSpeed,0x00c,cnt,4.2039e-45,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,DeleteFadeSpeed,0x00c,cnt,1,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_Test_ASMissile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_Test_Gun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,DeleteFadeSpeed,0x00c,cnt,3,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_Test_Missile_Player,DeleteFadeSpeed,0x00c,cnt,2,disc,tentative +Shell,Shell_Test_SubGun,DeleteFadeSpeed,0x00c,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,GuidanceType,0x010,cnt,4,disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,GuidanceType,0x010,cnt,4,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,GuidanceType,0x010,cnt,4,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,GuidanceType,0x010,cnt,4,disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,GuidanceType,0x010,cnt,7,disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,GuidanceType,0x010,cnt,5,disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,GuidanceType,0x010,cnt,5,disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,GuidanceType,0x010,cnt,4,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,GuidanceType,0x010,cnt,6,disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,GuidanceType,0x010,cnt,4,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,GuidanceType,0x010,cnt,5,disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,GuidanceType,0x010,cnt,5,disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,GuidanceType,0x010,cnt,4,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,GuidanceType,0x010,cnt,4,disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_NULL,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,GuidanceType,0x010,cnt,5,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,GuidanceType,0x010,cnt,4,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,GuidanceType,0x010,cnt,5,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,GuidanceType,0x010,cnt,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,SpiralType,0x014,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,SpiralType,0x014,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,SpiralType,0x014,cnt,5.60519e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,SpiralType,0x014,cnt,5.60519e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,SpiralType,0x014,cnt,5.60519e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,SpiralType,0x014,cnt,5.60519e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,SpiralType,0x014,cnt,5.60519e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,SpiralType,0x014,cnt,1.4013e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,SpiralType,0x014,cnt,1,disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,SpiralType,0x014,cnt,5.60519e-45,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_NULL,SpiralType,0x014,cnt,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,SpiralType,0x014,cnt,5.60519e-45,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,SpiralType,0x014,cnt,4,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,SpiralType,0x014,cnt,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,Length,0x020,f32,0,disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,Length,0x020,f32,0,disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,Length,0x020,f32,0,disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,Length,0x020,f32,0,disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,Length,0x020,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_Turret_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,Length,0x020,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,Length,0x020,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,Length,0x020,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,Length,0x020,f32,10,disc,confirmed +Shell,Shell_NULL,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_S16Boss_HBeam,Length,0x020,f32,3,disc,confirmed +Shell,Shell_S16Boss_Laser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Length,0x020,f32,3,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,Length,0x020,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,Length,0x020,f32,3,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,Length,0x020,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,Length,0x020,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,Length,0x020,f32,3,disc,confirmed +Shell,Shell_Test_ASMissile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_Test_Gun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_Test_Gun_Player,Length,0x020,f32,10,disc,confirmed +Shell,Shell_Test_Laser,Length,0x020,f32,0,disc,confirmed +Shell,Shell_Test_Missile,Length,0x020,f32,3,disc,confirmed +Shell,Shell_Test_Missile_Player,Length,0x020,f32,3,disc,confirmed +Shell,Shell_Test_SubGun,Length,0x020,f32,10,disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,Volume,0x024,f32,100,disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,Volume,0x024,f32,100,disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,Volume,0x024,f32,100,disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,Volume,0x024,f32,100,disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_NULL,Volume,0x024,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_HBeam,Volume,0x024,f32,1,disc,confirmed +Shell,Shell_S16Boss_Laser,Volume,0x024,f32,100,disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,Volume,0x024,f32,100,disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,Volume,0x024,f32,100,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_Test_ASMissile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,Volume,0x024,f32,10000,disc,confirmed +Shell,Shell_Test_Missile,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile_Player,Volume,0x024,f32,1,defaulted-on-disc,confirmed +Shell,Shell_Test_SubGun,Volume,0x024,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Turret_Missile,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,ShellMass,0x028,f32,0.173,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,ShellMass,0x028,f32,0.06,disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,ShellMass,0x028,f32,0.075,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,ShellMass,0x028,f32,0.792,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,ShellMass,0x028,f32,0.027,disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,ShellMass,0x028,f32,1.063,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,ShellMass,0x028,f32,0.004,disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,ShellMass,0x028,f32,0.002,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,ShellMass,0x028,f32,4.375,disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,ShellMass,0x028,f32,0.978,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,ShellMass,0x028,f32,0.075,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,ShellMass,0x028,f32,0.054,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,ShellMass,0x028,f32,0.015,disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,ShellMass,0x028,f32,0.794,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,ShellMass,0x028,f32,16.5,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,ShellMass,0x028,f32,10.89,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,ShellMass,0x028,f32,0.784,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,ShellMass,0x028,f32,2.415,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,ShellMass,0x028,f32,2.66,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,ShellMass,0x028,f32,0.421,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,ShellMass,0x028,f32,0.001,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,ShellMass,0x028,f32,0.002,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,ShellMass,0x028,f32,20.79,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,ShellMass,0x028,f32,0.001,disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,ShellMass,0x028,f32,0.002,disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,ShellMass,0x028,f32,0.001,disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,ShellMass,0x028,f32,0.006,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,ShellMass,0x028,f32,0.03,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,ShellMass,0x028,f32,0.15,disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,ShellMass,0x028,f32,0.096,disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,ShellMass,0x028,f32,0.028,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,ShellMass,0x028,f32,0.75,disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,ShellMass,0x028,f32,0.031,disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,ShellMass,0x028,f32,0.068,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,ShellMass,0x028,f32,0.007,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,ShellMass,0x028,f32,0.12,disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_NULL,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_S16Boss_HBeam,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_S16Boss_Laser,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,ShellMass,0x028,f32,0,disc,confirmed +Shell,Shell_Test_ASMissile,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_Test_Gun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_Test_Gun_Player,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_Test_Laser,ShellMass,0x028,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_Test_Missile_Player,ShellMass,0x028,f32,5,disc,confirmed +Shell,Shell_Test_SubGun,ShellMass,0x028,f32,0.005,disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,HP,0x03c,f32,0,disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,HP,0x03c,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_Test_Gun_Player,HP,0x03c,f32,0,disc,tentative +Shell,Shell_Test_Laser,HP,0x03c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,HP,0x03c,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,HP,0x03c,f32,0,disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,LifeTime,0x040,f32,2.1,disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,LifeTime,0x040,f32,25,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,LifeTime,0x040,f32,6,disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,LifeTime,0x040,f32,6,disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,LifeTime,0x040,f32,6,disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,LifeTime,0x040,f32,0.6,disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,LifeTime,0x040,f32,6,disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,LifeTime,0x040,f32,3,disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,LifeTime,0x040,f32,4,disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,LifeTime,0x040,f32,25,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,LifeTime,0x040,f32,12.5,disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,LifeTime,0x040,f32,20,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,LifeTime,0x040,f32,1.1,disc,confirmed +Shell,Shell_ADAN_Turret_Missile,LifeTime,0x040,f32,25,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,LifeTime,0x040,f32,1.5,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,LifeTime,0x040,f32,1.1,disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,LifeTime,0x040,f32,4.13,disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,LifeTime,0x040,f32,0.83,disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,LifeTime,0x040,f32,8,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,LifeTime,0x040,f32,1.38,disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,LifeTime,0x040,f32,8,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,LifeTime,0x040,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,LifeTime,0x040,f32,1.32,disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,LifeTime,0x040,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,LifeTime,0x040,f32,1.83,disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,LifeTime,0x040,f32,1.93,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,LifeTime,0x040,f32,3.74,disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,LifeTime,0x040,f32,4.13,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,LifeTime,0x040,f32,16,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,LifeTime,0x040,f32,8,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,LifeTime,0x040,f32,1.1,disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,LifeTime,0x040,f32,1.43,disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,LifeTime,0x040,f32,14,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,LifeTime,0x040,f32,8,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,LifeTime,0x040,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,LifeTime,0x040,f32,12.83,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,LifeTime,0x040,f32,5.5,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,LifeTime,0x040,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,LifeTime,0x040,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,LifeTime,0x040,f32,4.4,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,LifeTime,0x040,f32,8,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,LifeTime,0x040,f32,0.96,disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,LifeTime,0x040,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,LifeTime,0x040,f32,1.47,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,LifeTime,0x040,f32,36.67,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,LifeTime,0x040,f32,0.55,disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,LifeTime,0x040,f32,1.32,disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,LifeTime,0x040,f32,0.96,disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,LifeTime,0x040,f32,1.32,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,LifeTime,0x040,f32,1.65,disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,LifeTime,0x040,f32,1.83,disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,LifeTime,0x040,f32,1.76,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,LifeTime,0x040,f32,2.2,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,LifeTime,0x040,f32,2.93,disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,LifeTime,0x040,f32,1.73,disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,LifeTime,0x040,f32,1.65,disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,LifeTime,0x040,f32,0.96,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,LifeTime,0x040,f32,20,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,LifeTime,0x040,f32,3.96,disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,LifeTime,0x040,f32,3,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,LifeTime,0x040,f32,2.2,disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,LifeTime,0x040,f32,8,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,LifeTime,0x040,f32,1.79,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,LifeTime,0x040,f32,0.88,disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,LifeTime,0x040,f32,1.65,disc,confirmed +Shell,Shell_NULL,LifeTime,0x040,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,LifeTime,0x040,f32,3,disc,confirmed +Shell,Shell_S16Boss_HBeam,LifeTime,0x040,f32,7.5,disc,confirmed +Shell,Shell_S16Boss_Laser,LifeTime,0x040,f32,5,disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,LifeTime,0x040,f32,15,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,LifeTime,0x040,f32,25,disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,LifeTime,0x040,f32,0.7,disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,LifeTime,0x040,f32,3,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,LifeTime,0x040,f32,5,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,LifeTime,0x040,f32,15,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,LifeTime,0x040,f32,20,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,LifeTime,0x040,f32,40,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,LifeTime,0x040,f32,40,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,LifeTime,0x040,f32,8,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,LifeTime,0x040,f32,8,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,LifeTime,0x040,f32,3,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,LifeTime,0x040,f32,3,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,LifeTime,0x040,f32,3,disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,LifeTime,0x040,f32,3,disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,LifeTime,0x040,f32,16.7,disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,LifeTime,0x040,f32,20,disc,confirmed +Shell,Shell_Test_ASMissile,LifeTime,0x040,f32,25,disc,confirmed +Shell,Shell_Test_Gun,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_Test_Gun_Player,LifeTime,0x040,f32,0.5,disc,confirmed +Shell,Shell_Test_Laser,LifeTime,0x040,f32,1,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile,LifeTime,0x040,f32,25,disc,confirmed +Shell,Shell_Test_Missile_Player,LifeTime,0x040,f32,8,disc,confirmed +Shell,Shell_Test_SubGun,LifeTime,0x040,f32,0.5,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,FadeInTime,0x044,f32,0.5,disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,FadeInTime,0x044,f32,0.5,disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,FadeInTime,0x044,f32,0.5,disc,tentative +Shell,Shell_ADAN_Phantom_Laser,FadeInTime,0x044,f32,0.1,disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,FadeInTime,0x044,f32,0.5,disc,tentative +Shell,Shell_ADAN_Ship_AAGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,FadeInTime,0x044,f32,0.1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,FadeInTime,0x044,f32,0.1,disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,FadeInTime,0x044,f32,0.1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,FadeInTime,0x044,f32,0.1,disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,FadeInTime,0x044,f32,0.1,disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,FadeInTime,0x044,f32,0.1,disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,FadeInTime,0x044,f32,0.1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,FadeInTime,0x044,f32,0.1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,FadeInTime,0x044,f32,0.1,disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,FadeInTime,0x044,f32,0.5,disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,FadeInTime,0x044,f32,0.5,disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,FadeInTime,0x044,f32,0.1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,FadeInTime,0x044,f32,0.1,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,FadeInTime,0x044,f32,0.1,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,FadeInTime,0x044,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,FadeOutTime,0x048,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,FadeOutTime,0x048,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,FadeOutTime,0x048,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,FadeOutTime,0x048,f32,0.2,disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,FadeOutTime,0x048,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,FadeOutTime,0x048,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,FadeOutTime,0x048,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,FadeOutTime,0x048,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,FadeOutTime,0x048,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,FadeOutTime,0x048,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,FadeOutTime,0x048,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,FadeOutTime,0x048,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,FadeOutTime,0x048,f32,0.2,disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,FadeOutTime,0x048,f32,0.2,disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,FadeOutTime,0x048,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,FadeOutTime,0x048,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,FadeOutTime,0x048,f32,0.2,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,FadeOutTime,0x048,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,FadeOutTime,0x048,f32,0.2,disc,tentative +Shell,Shell_Test_Missile,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,FadeOutTime,0x048,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,Velocity,0x04c,f32,3000,disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,Velocity,0x04c,f32,300,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,Velocity,0x04c,f32,3000,disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,Velocity,0x04c,f32,2500,disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,Velocity,0x04c,f32,300,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,Velocity,0x04c,f32,300,disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_ADAN_Turret_Missile,Velocity,0x04c,f32,300,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,Velocity,0x04c,f32,6000,disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,Velocity,0x04c,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,Velocity,0x04c,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,Velocity,0x04c,f32,3000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,Velocity,0x04c,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,Velocity,0x04c,f32,2500,disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,Velocity,0x04c,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,Velocity,0x04c,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,Velocity,0x04c,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,Velocity,0x04c,f32,6000,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,Velocity,0x04c,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,Velocity,0x04c,f32,1000,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,Velocity,0x04c,f32,1500,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,Velocity,0x04c,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,Velocity,0x04c,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,Velocity,0x04c,f32,2500,disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,Velocity,0x04c,f32,2500,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,Velocity,0x04c,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,Velocity,0x04c,f32,1500,disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,Velocity,0x04c,f32,2500,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,Velocity,0x04c,f32,3500,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,Velocity,0x04c,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,Velocity,0x04c,f32,3500,disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,Velocity,0x04c,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,Velocity,0x04c,f32,2500,disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,Velocity,0x04c,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,Velocity,0x04c,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_NULL,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,Velocity,0x04c,f32,10000,disc,confirmed +Shell,Shell_S16Boss_HBeam,Velocity,0x04c,f32,6000,disc,confirmed +Shell,Shell_S16Boss_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,Velocity,0x04c,f32,5000,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,Velocity,0x04c,f32,300,disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,Velocity,0x04c,f32,100,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Velocity,0x04c,f32,100,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,Velocity,0x04c,f32,500,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,Velocity,0x04c,f32,3000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Velocity,0x04c,f32,3000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,Velocity,0x04c,f32,4000,disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,Velocity,0x04c,f32,6000,disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,Velocity,0x04c,f32,2000,disc,confirmed +Shell,Shell_Test_ASMissile,Velocity,0x04c,f32,300,disc,confirmed +Shell,Shell_Test_Gun,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_Test_Gun_Player,Velocity,0x04c,f32,8000,disc,confirmed +Shell,Shell_Test_Laser,Velocity,0x04c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile,Velocity,0x04c,f32,300,disc,confirmed +Shell,Shell_Test_Missile_Player,Velocity,0x04c,f32,1000,disc,confirmed +Shell,Shell_Test_SubGun,Velocity,0x04c,f32,16000,disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,MinimumVelocity,0x050,f32,100,disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,MinimumVelocity,0x050,f32,100,disc,tentative +Shell,Shell_ADAN_Ship_ASGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,MinimumVelocity,0x050,f32,100,disc,tentative +Shell,Shell_ADAN_Turret_Cannon,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,MinimumVelocity,0x050,f32,100,disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,MinimumVelocity,0x050,f32,500,disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,MinimumVelocity,0x050,f32,500,disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,MinimumVelocity,0x050,f32,4000,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,MinimumVelocity,0x050,f32,500,disc,tentative +Shell,Shell_S16Boss_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,MinimumVelocity,0x050,f32,100,disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,MinimumVelocity,0x050,f32,500,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,MinimumVelocity,0x050,f32,500,disc,tentative +Shell,Shell_Test_ASMissile,MinimumVelocity,0x050,f32,100,disc,tentative +Shell,Shell_Test_Gun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,MinimumVelocity,0x050,f32,100,disc,tentative +Shell,Shell_Test_Missile_Player,MinimumVelocity,0x050,f32,1000,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,MinimumVelocity,0x050,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,MaximumVelocity,0x054,f32,700,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,MaximumVelocity,0x054,f32,700,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,MaximumVelocity,0x054,f32,1500,disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,MaximumVelocity,0x054,f32,700,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,MaximumVelocity,0x054,f32,1000,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,MaximumVelocity,0x054,f32,1000,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,MaximumVelocity,0x054,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,MaximumVelocity,0x054,f32,1000,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,MaximumVelocity,0x054,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,MaximumVelocity,0x054,f32,1000,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,MaximumVelocity,0x054,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,MaximumVelocity,0x054,f32,4000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,MaximumVelocity,0x054,f32,1000,disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_NULL,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_HBeam,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_S16Boss_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,MaximumVelocity,0x054,f32,700,disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,MaximumVelocity,0x054,f32,1000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,MaximumVelocity,0x054,f32,1000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,MaximumVelocity,0x054,f32,2000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,MaximumVelocity,0x054,f32,4000,disc,confirmed +Shell,Shell_Test_ASMissile,MaximumVelocity,0x054,f32,700,disc,confirmed +Shell,Shell_Test_Gun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile,MaximumVelocity,0x054,f32,700,disc,confirmed +Shell,Shell_Test_Missile_Player,MaximumVelocity,0x054,f32,4000,disc,confirmed +Shell,Shell_Test_SubGun,MaximumVelocity,0x054,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,AngularVelocity,0x058,deg,20,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,AngularVelocity,0x058,deg,20,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,AngularVelocity,0x058,deg,20,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,AngularVelocity,0x058,deg,20,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,AngularVelocity,0x058,deg,15,disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,AngularVelocity,0x058,deg,90,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,AngularVelocity,0x058,deg,3,disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,AngularVelocity,0x058,deg,120,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,AngularVelocity,0x058,deg,60,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,AngularVelocity,0x058,deg,2,disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,AngularVelocity,0x058,deg,45,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,AngularVelocity,0x058,deg,0.5,disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,AngularVelocity,0x058,deg,1,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,AngularVelocity,0x058,deg,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,AngularVelocity,0x058,deg,5,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,AngularVelocity,0x058,deg,200,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,AngularVelocity,0x058,deg,75,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,AngularVelocity,0x058,deg,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,AngularVelocity,0x058,deg,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,AngularVelocity,0x058,deg,4,disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,AngularVelocity,0x058,deg,7,disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,AngularVelocity,0x058,deg,120,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,AngularVelocity,0x058,deg,60,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,AngularVelocity,0x058,deg,30,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,AngularVelocity,0x058,deg,2,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,AngularVelocity,0x058,deg,2,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,AngularVelocity,0x058,deg,90,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,AngularVelocity,0x058,deg,45,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,AngularVelocity,0x058,deg,2,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,AngularVelocity,0x058,deg,80,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,AngularVelocity,0x058,deg,4,disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,AngularVelocity,0x058,deg,200,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,AngularVelocity,0x058,deg,5,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,AngularVelocity,0x058,deg,2,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,AngularVelocity,0x058,deg,10,disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,AngularVelocity,0x058,deg,60,disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,AngularVelocity,0x058,deg,2,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,AngularVelocity,0x058,deg,80,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,AngularVelocity,0x058,deg,2,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,AngularVelocity,0x058,deg,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,AngularVelocity,0x058,deg,5,disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,AngularVelocity,0x058,deg,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,AngularVelocity,0x058,deg,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,AngularVelocity,0x058,deg,20,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,AngularVelocity,0x058,deg,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,AngularVelocity,0x058,deg,60,disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,AngularVelocity,0x058,deg,45,disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,AngularVelocity,0x058,deg,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,AngularVelocity,0x058,deg,120,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,AngularVelocity,0x058,deg,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,AngularVelocity,0x058,deg,2,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,AngularVelocity,0x058,deg,4,disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,AngularVelocity,0x058,deg,60,disc,confirmed +Shell,Shell_NULL,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_HBeam,AngularVelocity,0x058,deg,90,disc,confirmed +Shell,Shell_S16Boss_Laser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,AngularVelocity,0x058,deg,20,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,AngularVelocity,0x058,deg,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,AngularVelocity,0x058,deg,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,AngularVelocity,0x058,deg,90,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,AngularVelocity,0x058,deg,90,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,AngularVelocity,0x058,deg,90,disc,confirmed +Shell,Shell_Test_ASMissile,AngularVelocity,0x058,deg,20,disc,confirmed +Shell,Shell_Test_Gun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile,AngularVelocity,0x058,deg,20,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile_Player,AngularVelocity,0x058,deg,720,disc,confirmed +Shell,Shell_Test_SubGun,AngularVelocity,0x058,deg,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,Acceleration,0x05c,f32,100,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,Acceleration,0x05c,f32,1000,disc,tentative +Shell,Shell_ADAN_Ship_ASGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,Acceleration,0x05c,f32,100,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,Acceleration,0x05c,f32,1000,disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,Acceleration,0x05c,f32,2000,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,Acceleration,0x05c,f32,2000,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,Acceleration,0x05c,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,Acceleration,0x05c,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,Acceleration,0x05c,f32,4000,disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,Acceleration,0x05c,f32,2000,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,Acceleration,0x05c,f32,2000,disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,Acceleration,0x05c,f32,2000,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,Acceleration,0x05c,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,Acceleration,0x05c,f32,3000,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,Acceleration,0x05c,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,Acceleration,0x05c,f32,2000,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,Acceleration,0x05c,f32,4000,disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,Acceleration,0x05c,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,Acceleration,0x05c,f32,2000,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,Acceleration,0x05c,f32,2000,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,Acceleration,0x05c,f32,1000,disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,Acceleration,0x05c,f32,500,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Acceleration,0x05c,f32,500,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,Acceleration,0x05c,f32,2000,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,Acceleration,0x05c,f32,2000,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,Acceleration,0x05c,f32,2000,disc,tentative +Shell,Shell_Test_ASMissile,Acceleration,0x05c,f32,100,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,Acceleration,0x05c,f32,1000,disc,tentative +Shell,Shell_Test_Missile_Player,Acceleration,0x05c,f32,8000,disc,tentative +Shell,Shell_Test_SubGun,Acceleration,0x05c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,BeginGuidanceTimeAdjust,0x064,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_ADAN_Ship_ASGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,BeginGuidanceTimeAdjust,0x064,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,BeginGuidanceTimeAdjust,0x064,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,BeginGuidanceTimeAdjust,0x064,f32,0.01,disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_S16Boss_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_Test_ASMissile,BeginGuidanceTimeAdjust,0x064,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_Test_Missile_Player,BeginGuidanceTimeAdjust,0x064,f32,0.5,disc,tentative +Shell,Shell_Test_SubGun,BeginGuidanceTimeAdjust,0x064,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,EndGuidanceTime,0x068,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,EndGuidanceTime,0x068,f32,10,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,EndGuidanceTime,0x068,f32,15,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,EndGuidanceTime,0x068,f32,10,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,EndGuidanceTime,0x068,f32,5,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,EndGuidanceTime,0x068,f32,5,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,EndGuidanceTime,0x068,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,EndGuidanceTime,0x068,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,EndGuidanceTime,0x068,f32,14.5,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,EndGuidanceTime,0x068,f32,5,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,EndGuidanceTime,0x068,f32,12,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,EndGuidanceTime,0x068,f32,5,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,EndGuidanceTime,0x068,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,EndGuidanceTime,0x068,f32,5,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,EndGuidanceTime,0x068,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,EndGuidanceTime,0x068,f32,5,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,EndGuidanceTime,0x068,f32,5,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,EndGuidanceTime,0x068,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,EndGuidanceTime,0x068,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,EndGuidanceTime,0x068,f32,5,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_NULL,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_HBeam,EndGuidanceTime,0x068,f32,5,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,EndGuidanceTime,0x068,f32,10,disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,EndGuidanceTime,0x068,f32,5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,EndGuidanceTime,0x068,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,EndGuidanceTime,0x068,f32,5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,EndGuidanceTime,0x068,f32,5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,EndGuidanceTime,0x068,f32,5,disc,confirmed +Shell,Shell_Test_ASMissile,EndGuidanceTime,0x068,f32,10,disc,confirmed +Shell,Shell_Test_Gun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile,EndGuidanceTime,0x068,f32,10,disc,confirmed +Shell,Shell_Test_Missile_Player,EndGuidanceTime,0x068,f32,5,defaulted-on-disc,confirmed +Shell,Shell_Test_SubGun,EndGuidanceTime,0x068,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,Spiral_BeginTime,0x070,f32,0.2,disc,tentative +Shell,Shell_ADAN_Turret_Cannon,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,Spiral_BeginTime,0x070,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,Spiral_BeginTime,0x070,f32,0,disc,tentative +Shell,Shell_Test_SubGun,Spiral_BeginTime,0x070,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_ADAN_Ship_ASGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,Spiral_BeginTimeAdjust,0x074,f32,0.15,disc,tentative +Shell,Shell_ADAN_Turret_Cannon,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,Spiral_BeginTimeAdjust,0x074,f32,0.25,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,Spiral_BeginTimeAdjust,0x074,f32,0.25,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,Spiral_BeginTimeAdjust,0x074,f32,0.25,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_Test_Gun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,Spiral_BeginTimeAdjust,0x074,f32,0.25,disc,tentative +Shell,Shell_Test_Missile_Player,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,Spiral_BeginTimeAdjust,0x074,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,MinimumRange,0x08c,f32,1000,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,MinimumRange,0x08c,f32,4000,disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,MinimumRange,0x08c,f32,4000,disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,MinimumRange,0x08c,f32,4000,disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,MinimumRange,0x08c,f32,1000,disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,MinimumRange,0x08c,f32,4000,disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,MinimumRange,0x08c,f32,1000,disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,MinimumRange,0x08c,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,MinimumRange,0x08c,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,MinimumRange,0x08c,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,MinimumRange,0x08c,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,MinimumRange,0x08c,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,MinimumRange,0x08c,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,MinimumRange,0x08c,f32,50,disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,MinimumRange,0x08c,f32,50,disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,MinimumRange,0x08c,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,MinimumRange,0x08c,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,MinimumRange,0x08c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,MinimumRange,0x08c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,MinimumRange,0x08c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,MinimumRange,0x08c,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,MinimumRange,0x08c,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,MinimumRange,0x08c,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,MinimumRange,0x08c,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,MinimumRange,0x08c,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,MinimumRange,0x08c,f32,50,disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,MinimumRange,0x08c,f32,50,disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,MinimumRange,0x08c,f32,50,disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,MinimumRange,0x08c,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,MinimumRange,0x08c,f32,50,disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,MinimumRange,0x08c,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_NULL,MinimumRange,0x08c,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,MinimumRange,0x08c,f32,100,disc,confirmed +Shell,Shell_S16Boss_HBeam,MinimumRange,0x08c,f32,10,disc,confirmed +Shell,Shell_S16Boss_Laser,MinimumRange,0x08c,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,MinimumRange,0x08c,f32,1000,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,MinimumRange,0x08c,f32,4000,disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,MinimumRange,0x08c,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,MinimumRange,0x08c,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,MinimumRange,0x08c,f32,50,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,MinimumRange,0x08c,f32,1000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,MinimumRange,0x08c,f32,1000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_Test_ASMissile,MinimumRange,0x08c,f32,1000,disc,confirmed +Shell,Shell_Test_Gun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,MinimumRange,0x08c,f32,1,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,MinimumRange,0x08c,f32,50,disc,confirmed +Shell,Shell_Test_Missile,MinimumRange,0x08c,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile_Player,MinimumRange,0x08c,f32,500,disc,confirmed +Shell,Shell_Test_SubGun,MinimumRange,0x08c,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,MaximumRange,0x090,f32,8000,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,MaximumRange,0x090,f32,2000,disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,MaximumRange,0x090,f32,9000,disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,MaximumRange,0x090,f32,9000,disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,MaximumRange,0x090,f32,7000,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,MaximumRange,0x090,f32,50000,disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,MaximumRange,0x090,f32,8000,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,MaximumRange,0x090,f32,2500,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,MaximumRange,0x090,f32,6000,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,MaximumRange,0x090,f32,7500,disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,MaximumRange,0x090,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,MaximumRange,0x090,f32,3500,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,MaximumRange,0x090,f32,8500,disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,MaximumRange,0x090,f32,7500,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,MaximumRange,0x090,f32,7500,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,MaximumRange,0x090,f32,6500,disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,MaximumRange,0x090,f32,4000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,MaximumRange,0x090,f32,3500,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,MaximumRange,0x090,f32,8500,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,MaximumRange,0x090,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,MaximumRange,0x090,f32,3500,disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,MaximumRange,0x090,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,MaximumRange,0x090,f32,3500,disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,MaximumRange,0x090,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,MaximumRange,0x090,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,MaximumRange,0x090,f32,2500,disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,MaximumRange,0x090,f32,7000,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,MaximumRange,0x090,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,MaximumRange,0x090,f32,5500,disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,MaximumRange,0x090,f32,7500,disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,MaximumRange,0x090,f32,4500,disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,MaximumRange,0x090,f32,3500,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,MaximumRange,0x090,f32,10000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,MaximumRange,0x090,f32,6500,disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,MaximumRange,0x090,f32,9000,disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,MaximumRange,0x090,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,MaximumRange,0x090,f32,5500,disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,MaximumRange,0x090,f32,7000,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,MaximumRange,0x090,f32,10000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,MaximumRange,0x090,f32,6500,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,MaximumRange,0x090,f32,8000,disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_NULL,MaximumRange,0x090,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,MaximumRange,0x090,f32,20000,disc,confirmed +Shell,Shell_S16Boss_HBeam,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_S16Boss_Laser,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,MaximumRange,0x090,f32,2000,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,MaximumRange,0x090,f32,8000,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,MaximumRange,0x090,f32,8000,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,MaximumRange,0x090,f32,8000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,MaximumRange,0x090,f32,10000,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,MaximumRange,0x090,f32,6000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,MaximumRange,0x090,f32,4000,disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,MaximumRange,0x090,f32,500000,disc,confirmed +Shell,Shell_Test_ASMissile,MaximumRange,0x090,f32,8000,disc,confirmed +Shell,Shell_Test_Gun,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_Test_Gun_Player,MaximumRange,0x090,f32,5000,disc,confirmed +Shell,Shell_Test_Laser,MaximumRange,0x090,f32,1e+07,disc,confirmed +Shell,Shell_Test_Missile,MaximumRange,0x090,f32,2500,disc,confirmed +Shell,Shell_Test_Missile_Player,MaximumRange,0x090,f32,15000,disc,confirmed +Shell,Shell_Test_SubGun,MaximumRange,0x090,f32,10000,disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,Color_R,0x0a0,f32,1,disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,Color_R,0x0a0,f32,1,disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,Color_R,0x0a0,f32,1,disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_NULL,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,Color_R,0x0a0,f32,1,disc,confirmed +Shell,Shell_S16Boss_HBeam,Color_R,0x0a0,f32,0,disc,confirmed +Shell,Shell_S16Boss_Laser,Color_R,0x0a0,f32,1.7,disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_ASMissile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,Color_R,0x0a0,f32,1,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_Test_Missile,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile_Player,Color_R,0x0a0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_SubGun,Color_R,0x0a0,f32,0.7,disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,Color_G,0x0a4,f32,0.3,disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Turret_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,Color_G,0x0a4,f32,0.8,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,Color_G,0x0a4,f32,0.3,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,Color_G,0x0a4,f32,0.3,disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,Color_G,0x0a4,f32,0.3,disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,Color_G,0x0a4,f32,0.3,disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,Color_G,0x0a4,f32,0.3,disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,Color_G,0x0a4,f32,0.3,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_NULL,Color_G,0x0a4,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_S16Boss_HBeam,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_S16Boss_Laser,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,Color_G,0x0a4,f32,0.3,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,Color_G,0x0a4,f32,0.3,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,Color_G,0x0a4,f32,0.3,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_Test_ASMissile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_Test_Gun,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_Test_Gun_Player,Color_G,0x0a4,f32,0.85,disc,confirmed +Shell,Shell_Test_Laser,Color_G,0x0a4,f32,0.3,disc,confirmed +Shell,Shell_Test_Missile,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_Test_Missile_Player,Color_G,0x0a4,f32,0.8,disc,confirmed +Shell,Shell_Test_SubGun,Color_G,0x0a4,f32,1,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_ADAN_Ship_ASGun,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_ADAN_Turret_Cannon,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_ADAN_Turret_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,Color_B,0x0a8,f32,0.7,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_NULL,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_S16Boss_HBeam,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_S16Boss_Laser,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,Color_B,0x0a8,f32,0.7,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_Ship_AAGun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_TCAF_Ship_ASGun,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_Test_ASMissile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_Test_Gun,Color_B,0x0a8,f32,0.7,disc,tentative +Shell,Shell_Test_Gun_Player,Color_B,0x0a8,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_Test_Missile_Player,Color_B,0x0a8,f32,0.6,disc,tentative +Shell,Shell_Test_SubGun,Color_B,0x0a8,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,Radius,0x0b4,f32,20,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,Radius,0x0b4,f32,10,disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,Radius,0x0b4,f32,10,disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,Radius,0x0b4,f32,10,disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,Radius,0x0b4,f32,10,disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,Radius,0x0b4,f32,10,disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,Radius,0x0b4,f32,20,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,Radius,0x0b4,f32,20,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_ADAN_Turret_Missile,Radius,0x0b4,f32,20,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,Radius,0x0b4,f32,30,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,Radius,0x0b4,f32,100,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,Radius,0x0b4,f32,100,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,Radius,0x0b4,f32,30,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,Radius,0x0b4,f32,100,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,Radius,0x0b4,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,Radius,0x0b4,f32,100,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,Radius,0x0b4,f32,100,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,Radius,0x0b4,f32,100,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,Radius,0x0b4,f32,100,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,Radius,0x0b4,f32,60,disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,Radius,0x0b4,f32,70,disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,Radius,0x0b4,f32,60,disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,Radius,0x0b4,f32,100,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,Radius,0x0b4,f32,1,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,Radius,0x0b4,f32,50,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,Radius,0x0b4,f32,40,disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_NULL,Radius,0x0b4,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_S16Boss_HBeam,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_S16Boss_Laser,Radius,0x0b4,f32,100,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,Radius,0x0b4,f32,10,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,Radius,0x0b4,f32,20,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,Radius,0x0b4,f32,10,disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,Radius,0x0b4,f32,100,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Radius,0x0b4,f32,100,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,Radius,0x0b4,f32,100,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Radius,0x0b4,f32,100,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,Radius,0x0b4,f32,10,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Radius,0x0b4,f32,20,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,Radius,0x0b4,f32,45,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Radius,0x0b4,f32,45,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,Radius,0x0b4,f32,30,disc,confirmed +Shell,Shell_Test_ASMissile,Radius,0x0b4,f32,20,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,Radius,0x0b4,f32,10,disc,confirmed +Shell,Shell_Test_Missile,Radius,0x0b4,f32,20,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile_Player,Radius,0x0b4,f32,50,disc,confirmed +Shell,Shell_Test_SubGun,Radius,0x0b4,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,Power,0x0b8,f32,60,disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,Power,0x0b8,f32,15,disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,Power,0x0b8,f32,50,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,Power,0x0b8,f32,15,disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,Power,0x0b8,f32,1000,disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,Power,0x0b8,f32,1000,disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,Power,0x0b8,f32,333.3,disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,Power,0x0b8,f32,25,disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,Power,0x0b8,f32,5,disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,Power,0x0b8,f32,1000,disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,Power,0x0b8,f32,60,disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,Power,0x0b8,f32,5,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,Power,0x0b8,f32,500,disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,Power,0x0b8,f32,200,disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,Power,0x0b8,f32,10,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,Power,0x0b8,f32,30,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,Power,0x0b8,f32,15,disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,Power,0x0b8,f32,300,disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,Power,0x0b8,f32,100,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,Power,0x0b8,f32,14,disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,Power,0x0b8,f32,100,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,Power,0x0b8,f32,200,disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,Power,0x0b8,f32,75,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,Power,0x0b8,f32,400,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,Power,0x0b8,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,Power,0x0b8,f32,2500,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,Power,0x0b8,f32,80,disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,Power,0x0b8,f32,35,disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,Power,0x0b8,f32,20000,disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,Power,0x0b8,f32,2500,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,Power,0x0b8,f32,150,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,Power,0x0b8,f32,300,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,Power,0x0b8,f32,200,disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,Power,0x0b8,f32,150,disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,Power,0x0b8,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,Power,0x0b8,f32,70,disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,Power,0x0b8,f32,60,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,Power,0x0b8,f32,500,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,Power,0x0b8,f32,20000,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,Power,0x0b8,f32,1000,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,Power,0x0b8,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,Power,0x0b8,f32,100,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,Power,0x0b8,f32,4000,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,Power,0x0b8,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,Power,0x0b8,f32,400,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,Power,0x0b8,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,Power,0x0b8,f32,180,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,Power,0x0b8,f32,10,disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,Power,0x0b8,f32,36000,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,Power,0x0b8,f32,16,disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,Power,0x0b8,f32,8,disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,Power,0x0b8,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,Power,0x0b8,f32,35,disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,Power,0x0b8,f32,16,disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,Power,0x0b8,f32,6,disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,Power,0x0b8,f32,50,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,Power,0x0b8,f32,200,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,Power,0x0b8,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,Power,0x0b8,f32,20,disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,Power,0x0b8,f32,200,disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,Power,0x0b8,f32,500,disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,Power,0x0b8,f32,1000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,Power,0x0b8,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,Power,0x0b8,f32,10,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,Power,0x0b8,f32,240,disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,Power,0x0b8,f32,300,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,Power,0x0b8,f32,12000,disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,Power,0x0b8,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,Power,0x0b8,f32,500,disc,confirmed +Shell,Shell_NULL,Power,0x0b8,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,Power,0x0b8,f32,20,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_HBeam,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_S16Boss_Laser,Power,0x0b8,f32,700,disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,Power,0x0b8,f32,250,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,Power,0x0b8,f32,25,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,Power,0x0b8,f32,20,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,Power,0x0b8,f32,5,disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,Power,0x0b8,f32,250,disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,Power,0x0b8,f32,500,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,Power,0x0b8,f32,500,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Power,0x0b8,f32,5000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,Power,0x0b8,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,Power,0x0b8,f32,30,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,Power,0x0b8,f32,100,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Power,0x0b8,f32,100,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,Power,0x0b8,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Power,0x0b8,f32,200,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,Power,0x0b8,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,Power,0x0b8,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,Power,0x0b8,f32,500,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,Power,0x0b8,f32,200,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,Power,0x0b8,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Power,0x0b8,f32,15,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,Power,0x0b8,f32,60,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Power,0x0b8,f32,60,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,Power,0x0b8,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,Power,0x0b8,f32,1,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,Power,0x0b8,f32,5,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,Power,0x0b8,f32,10,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,Power,0x0b8,f32,250,disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,Power,0x0b8,f32,50,disc,confirmed +Shell,Shell_Test_ASMissile,Power,0x0b8,f32,20,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun,Power,0x0b8,f32,15,disc,confirmed +Shell,Shell_Test_Gun_Player,Power,0x0b8,f32,15,disc,confirmed +Shell,Shell_Test_Laser,Power,0x0b8,f32,200,disc,confirmed +Shell,Shell_Test_Missile,Power,0x0b8,f32,5,disc,confirmed +Shell,Shell_Test_Missile_Player,Power,0x0b8,f32,100,disc,confirmed +Shell,Shell_Test_SubGun,Power,0x0b8,f32,40,disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_NULL,FailedDamageRatio,0x0bc,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,FailedDamageRatio,0x0bc,f32,100,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,FailedDamageRatio,0x0bc,f32,100,disc,tentative +Shell,Shell_S16Boss_Laser,FailedDamageRatio,0x0bc,f32,10,disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,FailedDamageRatio,0x0bc,f32,100,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,FailedDamageRatio,0x0bc,f32,1,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,PlayerLaserPower,0x0c0,f32,200,disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,PlayerLaserPower,0x0c0,f32,200,disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,PlayerLaserPower,0x0c0,f32,150,disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,PlayerLaserPower,0x0c0,f32,75,disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,PlayerLaserPower,0x0c0,f32,300,disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,PlayerLaserPower,0x0c0,f32,400,disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,PlayerLaserPower,0x0c0,f32,30,disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,PlayerLaserPower,0x0c0,f32,12000,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_NULL,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_HBeam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_Laser,PlayerLaserPower,0x0c0,f32,200,disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,PlayerLaserPower,0x0c0,f32,200,disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,PlayerLaserPower,0x0c0,f32,200,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,PlayerLaserPower,0x0c0,f32,400,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_ASMissile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,PlayerLaserPower,0x0c0,f32,10,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile_Player,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_SubGun,PlayerLaserPower,0x0c0,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_ADAN_Ship_ASGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,ChaffResistRatio,0x0fc,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,ChaffResistRatio,0x0fc,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,ChaffResistRatio,0x0fc,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_Test_ASMissile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_Test_Gun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,ChaffResistRatio,0x0fc,f32,0.2,disc,tentative +Shell,Shell_Test_Missile_Player,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,ChaffResistRatio,0x0fc,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,ChargingSizeRatio,0x104,f32,2,disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,ChargingSizeRatio,0x104,f32,2,disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,ChargingSizeRatio,0x104,f32,2,disc,tentative +Shell,Shell_NULL,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,ChargingSizeRatio,0x104,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,SphereRadiusBegin,0x10c,f32,30,disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,SphereRadiusBegin,0x10c,f32,50,disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,SphereRadiusBegin,0x10c,f32,300,disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,SphereRadiusBegin,0x10c,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,SphereRadiusBegin,0x10c,f32,300,disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,SphereRadiusBegin,0x10c,f32,1000,disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,SphereRadiusBegin,0x10c,f32,30,disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,SphereRadiusBegin,0x10c,f32,150,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,SphereRadiusBegin,0x10c,f32,300,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,SphereRadiusBegin,0x10c,f32,10,disc,tentative +Shell,Shell_Test_SubGun,SphereRadiusBegin,0x10c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,SphereRadiusTurn,0x110,f32,140,disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,SphereRadiusTurn,0x110,f32,1000,disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,SphereRadiusTurn,0x110,f32,700,disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,SphereRadiusTurn,0x110,f32,2000,disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,SphereRadiusTurn,0x110,f32,1700,disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,SphereRadiusTurn,0x110,f32,2500,disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,SphereRadiusTurn,0x110,f32,750,disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,SphereRadiusTurn,0x110,f32,350,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,SphereRadiusTurn,0x110,f32,700,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,SphereRadiusTurn,0x110,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,SphereRadiusEnd,0x114,f32,200,disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,SphereRadiusEnd,0x114,f32,2000,disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,SphereRadiusEnd,0x114,f32,1000,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,SphereRadiusEnd,0x114,f32,3000,disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,SphereRadiusEnd,0x114,f32,2500,disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,SphereRadiusEnd,0x114,f32,5000,disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,SphereRadiusEnd,0x114,f32,1000,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_NULL,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_HBeam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,SphereRadiusEnd,0x114,f32,500,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,SphereRadiusEnd,0x114,f32,1000,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_ASMissile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile_Player,SphereRadiusEnd,0x114,f32,12,disc,confirmed +Shell,Shell_Test_SubGun,SphereRadiusEnd,0x114,f32,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,ExplosionTurnTime,0x118,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,ExplosionTurnTime,0x118,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,ExplosionTurnTime,0x118,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,ExplosionTurnTime,0x118,f32,1,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,ExplosionTurnTime,0x118,f32,0.5,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,ExplosionTurnTime,0x118,f32,0.65,disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,ExplosionTurnTime,0x118,f32,0.2,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,ExplosionTurnTime,0x118,f32,0.5,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,ExplosionTurnTime,0x118,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,ExplosionTurnTime,0x118,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,ExplosionLifeTime,0x11c,f32,2,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,ExplosionLifeTime,0x11c,f32,3,disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,ExplosionLifeTime,0x11c,f32,2,disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,ExplosionLifeTime,0x11c,f32,4,disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,ExplosionLifeTime,0x11c,f32,2.5,disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,ExplosionLifeTime,0x11c,f32,5,disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,ExplosionLifeTime,0x11c,f32,0.75,disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,ExplosionLifeTime,0x11c,f32,1,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,ExplosionLifeTime,0x11c,f32,2,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,ExplosionLifeTime,0x11c,f32,2,disc,tentative +Shell,Shell_Test_SubGun,ExplosionLifeTime,0x11c,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,ExplosionDamage_Maximum,0x120,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,ExplosionDamage_Maximum,0x120,f32,5000,disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,ExplosionDamage_Maximum,0x120,f32,2000,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,ExplosionDamage_Maximum,0x120,f32,500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,ExplosionDamage_Maximum,0x120,f32,300,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,ExplosionDamage_Maximum,0x120,f32,10000,disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,ExplosionDamage_Maximum,0x120,f32,50,disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,ExplosionDamage_Maximum,0x120,f32,100,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,ExplosionDamage_Maximum,0x120,f32,2000,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,ExplosionDamage_Maximum,0x120,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,ExplosionDamage_OuterEdge,0x124,f32,50,disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,ExplosionDamage_OuterEdge,0x124,f32,1000,disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,ExplosionDamage_OuterEdge,0x124,f32,500,disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,ExplosionDamage_OuterEdge,0x124,f32,125,disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,ExplosionDamage_OuterEdge,0x124,f32,250,disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,ExplosionDamage_OuterEdge,0x124,f32,2500,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,ExplosionDamage_OuterEdge,0x124,f32,25,disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,ExplosionDamage_OuterEdge,0x124,f32,50,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,ExplosionDamage_OuterEdge,0x124,f32,500,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,ExplosionDamage_OuterEdge,0x124,f32,10,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,ExplosionDamage_OuterEdge,0x124,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,Explosion_MaxDamageRadius,0x128,f32,0.3,disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,Explosion_MaxDamageRadius,0x128,f32,0.3,disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,Explosion_MaxDamageRadius,0x128,f32,0.3,disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,Explosion_MaxDamageRadius,0x128,f32,0.5,disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,Explosion_MaxDamageRadius,0x128,f32,0.6,disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,Explosion_MaxDamageRadius,0x128,f32,0.3,disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,Explosion_MaxDamageRadius,0x128,f32,0.75,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,Explosion_MaxDamageRadius,0x128,f32,0.3,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Explosion_MaxDamageRadius,0x128,f32,0.3,disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,Explosion_MaxDamageRadius,0x128,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,SplitTime_Maximum,0x130,f32,1.5,disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,SplitTime_Maximum,0x130,f32,3,disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,SplitTime_Maximum,0x130,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,SplitCone,0x134,deg,60,disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,SplitCone,0x134,deg,180,disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_NULL,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,SplitCone,0x134,deg,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_AAFrigate_AAGun,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_ADAN_Attacker_B_GunTurret,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Attacker_S_ASMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_ADAN_Attacker_S_NoseGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Battleship_BowChaser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Cruiser_BowChaser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Destroyer_BowChaser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Phantom_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Puppy_NoseGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_SDBattleship_BowChaser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAGun,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_ADAN_Ship_AAGunL,NodeCount,0x148,cnt,8,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_AAMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_ADAN_Ship_ASGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Ship_ASMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_ADAN_Turret_Cannon,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Turret_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_ADAN_Turret_NoseGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_TypeQ_Beam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_Vindicator_Rocket,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_DSaber_P_wep_01_Beam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_02_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_03_Cannon,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_04_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_05_ASMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_07_Cannon,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_08_ASMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_09_Gun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_10_Gun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_11_Cannon,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_12_Rocket,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Child,NodeCount,0x148,cnt,32,disc,confirmed +Shell,Shell_DSaber_P_wep_13_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_14_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_19_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_23_Cannon,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_24_Beam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_25_HBeam,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_26_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_27_ASMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_28_Bomb,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Bomb,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_29_Child,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_30_ASMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_31_Bomb,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_32_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_33_Gun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_34_HBeam,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_35_Gun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_36_Bomb,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_37_Beam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_38_Shotgun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_39_Beam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_40_Gun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_41_Shotgun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_42_Shotgun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_43_Rocket,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_DSaber_P_wep_48_Cannon,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_DSaber_P_wep_50_Cannon,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_52_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_53_Beam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_54_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_55_Rocket,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_DSaber_P_wep_56_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_57_Rocket,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_DSaber_P_wep_58_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_59_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_60_ASMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_62_Beam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_66_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_67_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_68_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_69_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_70_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_71_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_80_Rocket,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_DSaber_P_wep_81_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_DSaber_P_wep_82_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_83_Gun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_84_Cannon,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_DSaber_P_wep_85_Beam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_NULL,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_AAGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_HBeam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_S16Boss_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Acropolis_BowChaser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_ArrowHead_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_TCAF_ArrowHead_NoseGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Battleship_BowChaser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Cruiser_BowChaser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Beam_P,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Bomb_P,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Cannon_P,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Gun_P,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Laser_P,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Missile_P,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Rocket_P,NodeCount,0x148,cnt,8,disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_Special_P,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_AAGunL,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_ASGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_TCAF_Ship_HBeam,NodeCount,0x148,cnt,32,disc,confirmed +Shell,Shell_Test_ASMissile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_Test_Gun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Gun_Player,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Laser,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_Test_Missile,NodeCount,0x148,cnt,64,disc,confirmed +Shell,Shell_Test_Missile_Player,NodeCount,0x148,cnt,16,disc,confirmed +Shell,Shell_Test_SubGun,NodeCount,0x148,cnt,0,defaulted-on-disc,confirmed +Shell,Shell_ADAN_AAFrigate_AAGun,Deceleration,0x164,f32,100,disc,tentative +Shell,Shell_ADAN_Attacker_B_GunTurret,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_ASMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_ADAN_Attacker_S_NoseGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Battleship_BowChaser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Cruiser_BowChaser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Destroyer_BowChaser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Phantom_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Puppy_NoseGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_SDBattleship_BowChaser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAGun,Deceleration,0x164,f32,100,disc,tentative +Shell,Shell_ADAN_Ship_AAGunL,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_AAMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Ship_ASMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Cannon,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_ADAN_Turret_NoseGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_TypeQ_Beam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_ADAN_Vindicator_Rocket,Deceleration,0x164,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_01_Beam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_02_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_03_Cannon,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_04_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_05_ASMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_07_Cannon,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_08_ASMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_09_Gun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_10_Gun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_11_Cannon,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_12_Rocket,Deceleration,0x164,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_13_Child,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_13_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_14_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_19_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_23_Cannon,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_24_Beam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_25_HBeam,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_26_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_27_ASMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_28_Bomb,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Bomb,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_29_Child,Deceleration,0x164,f32,0,disc,tentative +Shell,Shell_DSaber_P_wep_30_ASMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_31_Bomb,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_32_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_33_Gun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_34_HBeam,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_35_Gun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_36_Bomb,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_37_Beam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_38_Shotgun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_39_Beam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_40_Gun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_41_Shotgun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_42_Shotgun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_43_Rocket,Deceleration,0x164,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_48_Cannon,Deceleration,0x164,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_50_Cannon,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_52_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_53_Beam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_54_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_55_Rocket,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_56_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_57_Rocket,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_58_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_59_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_60_ASMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_62_Beam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_66_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_67_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_68_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_69_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_70_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_71_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_80_Rocket,Deceleration,0x164,f32,100,disc,tentative +Shell,Shell_DSaber_P_wep_81_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_82_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_83_Gun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_84_Cannon,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_DSaber_P_wep_85_Beam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_NULL,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_AAGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_HBeam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_S16Boss_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Acropolis_BowChaser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_TCAF_ArrowHead_NoseGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Battleship_BowChaser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Cruiser_BowChaser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_ASMissile_P,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Beam_P,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Bomb_P,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Cannon_P,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Gun_P,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Laser_P,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Missile_P,Deceleration,0x164,f32,100,disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_NoseGun_P,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Rocket_P,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Shotgun_P,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_Special_P,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_DeltaSaber_TwinGun_P,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_AAGunL,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_ASGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_TCAF_Ship_HBeam,Deceleration,0x164,f32,10,defaulted-on-disc,tentative +Shell,Shell_Test_ASMissile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_Test_Gun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Gun_Player,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Laser,Deceleration,0x164,f32,0,defaulted-on-disc,tentative +Shell,Shell_Test_Missile,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_Test_Missile_Player,Deceleration,0x164,f32,100,defaulted-on-disc,tentative +Shell,Shell_Test_SubGun,Deceleration,0x164,f32,0,defaulted-on-disc,tentative diff --git a/docs/re/structures/weapon-struct-runtime.md b/docs/re/structures/weapon-struct-runtime.md new file mode 100644 index 0000000..e9cc00f --- /dev/null +++ b/docs/re/structures/weapon-struct-runtime.md @@ -0,0 +1,294 @@ +# Runtime `Weapon` / `Shell` structs — read from live guest memory + +**Confidence: ✅ CONFIRMED** for the fields marked ✅ below (each binding is +reproduced by 10–125 independent disc records with **zero** contradictions); +🟡 for the thin ones. Captured 2026-07-29 from Xenia Canary running the retail +disc, save slot 01 (Stage 02, 5 % progress), READY ROOM and ARSENAL. + +## Why this exists + +`weapon\Weapon_*.tbl` is an [IDXD](../INDEX.md) record whose string pool **omits +every field left at its default**. That parked a long list of stats as +unreadable — the `…Ratio` / `…Count` family, `Power`, `MaximumRange`. The +[Arsenal DATA SHEET route](../weapon-datasheet-runtime.md) recovered a few of +them but only as letter buckets (Range/Damage as `A`…`E`), and only for the 9 +weapons unlocked at 5 % progress. + +This reads the values **directly out of the running game's memory** instead. +All 126 weapons, all fields, exact numbers, in one pass — and it needs no story +progress, because the definitions are parsed at load time whether or not the +player has unlocked the weapon. + +## The lever: Canary maps guest RAM into `/dev/shm` + +Xenia Canary backs the entire guest address space with one shared-memory file, +`/dev/shm/xenia_memory_`. It is a plain file: **the guest's RAM is readable +from the host with `open`/`seek`/`read`, live, no debugger and no emulator +patch.** Guest VAs map into it through Xenia's fixed table (`memory.cc`), which +[`tools/re-capture/gmem.py`](../../../tools/re-capture/gmem.py) implements: + +```bash +python3 tools/re-capture/gmem.py find "Weapon_DSaber_P_wep_01" # search all of RAM +python3 tools/re-capture/gmem.py words 0xbccce500 48 # dump as BE u32/f32 +``` + +The file is sparse (~212 MB resident of 4.5 GB), and the scan uses +`SEEK_DATA`/`SEEK_HOLE`, so a full-RAM search costs ~0.2 s. + +## Finding the objects + +1. The title's **schema field-name pool** is in the XEX at `0x82086a30`, in + declaration order: `EnumWeapon`, type `Weapon` (`ID`, `Name`, `TargetType`, + … `CartridgeModelName`), then type `Shell` (`ID`, `Name`, `MovementType`, … + `Explosion_MaxDamageRadius`). This is exactly the on-disc field order. No + pointer to these strings exists anywhere in RAM — PPC builds the addresses + with `lis`/`ori` immediate pairs — so the schema descriptor cannot be found + by pointer-chasing; the layout has to be solved instead (below). +2. Each parsed record becomes **two C++ objects**, a `Weapon` and its `Shell`, + each in its own contiguous array, each identified by its **vtable pointer**: + + | class | vtable VA | stride | count | + |-------|-----------|--------|-------| + | `Weapon` | `0x820af548` | `0xc0` | 126 | + | `Shell` | `0x820af58c` | `0x200` | 126 | + + The vtable VAs are static (XEX `.data`); the array base addresses are heap + and are **not** assumed — the tool locates every object by scanning RAM for + the vtable word. +3. Object `+0x04` points at a 0x40-byte **name record**; the ID string sits at + `+0x10` inside it. That is what keys each object back to its disc record. + +`Weapon` ↔ `Shell` pairing is by ID (`Weapon_X` ↔ `Shell_X`) — the two arrays +are in **different orders**, so index-pairing would be wrong. + +## Solving the layout (the part that makes this evidence, not guesswork) + +[`tools/re-capture/weapon_runtime.py`](../../../tools/re-capture/weapon_runtime.py) +brute-forces every `(field, byte offset, encoding)` triple and scores it against +the disc: how many records does this offset *reproduce*, and how many does it +*contradict*? A binding is accepted only with **zero contradictions**, and is +marked ✅ only when ≥10 records agree on ≥3 distinct values. + +That threshold matters: a field whose disc samples are all the same number +matches any offset holding that constant, so agreement count alone is not +evidence — the number of **distinct** values pinned down is. Two fields landing +on one offset is impossible in a real struct, so collisions are resolved to the +better-evidenced field and the loser is reported as unsolved. Bindings that +contradict more than 20 % of their samples are discarded outright rather than +reported on their agreeing subset. + +Encodings found: `f32`, `u32`, `deg` (**angles are stored in radians**; +`SprayAngle`, `AngularVelocity` and `SplitCone` are degrees on disc), and `cnt` +— see the next section. + +### `IsCharging` switches the counter encoding ✅ + +`LoadingCount` and `TriggerShotCount` at `+0x28` / `+0x44` are **int32 on 118 +records and float32 on 8**. The 8 are exactly the records with +`IsCharging = Yes` — an exact partition, found by testing every disc field/value +pair against the float-encoded set. A charging weapon drains its magazine +continuously, so its counter needs a fraction. + +Any reimplementation must branch on `IsCharging` when reading these two fields; +reading them as int unconditionally yields `1125515264` instead of `150`. + +## Struct maps + +See [`docs/re/captures/weapon-runtime-fields.csv`](../captures/weapon-runtime-fields.csv) +for the full machine-readable table — 7 182 rows, every confirmed field × every +one of the 126 records, tagged `disc` or `defaulted-on-disc`. **4 393 of those +values were not readable from the disc at all.** + +### `Weapon` (`0xc0` bytes) + +| offset | enc | field | agree | distinct | conf | +|--------|-----|-------|------:|---------:|------| +| `+0x010` | u32 | `ReticleType` | 62 | 13 | ✅ | +| `+0x01c` | u32 | `SpecialWeaponType` | 73 | 6 | ✅ | +| `+0x028` | cnt | `LoadingCount` | 121 | 33 | ✅ | +| `+0x02c` | f32 | `Interval` | 125 | 28 | ✅ | +| `+0x030` | f32 | `ReadyInterval` | 120 | 10 | ✅ | +| `+0x034` | f32 | `Heating` | 114 | 30 | ✅ | +| `+0x038` | f32 | `Cooling` | 106 | 21 | ✅ | +| `+0x03c` | f32 | `Mass` | 122 | 42 | ✅ | +| `+0x040` | f32 | `HitRatio` | 102 | 5 | ✅ | +| `+0x044` | cnt | `TriggerShotCount` | 114 | 17 | ✅ | +| `+0x048` | f32 | `TriggerShotInterval` | 99 | 11 | ✅ | +| `+0x050` | deg | `SprayAngle` | 96 | 17 | ✅ | +| `+0x06c` | f32 | `LockIntervalSingle` | 61 | 9 | ✅ | +| `+0x070` | f32 | `LockIntervalMulti` | 28 | 9 | ✅ | +| `+0x09c` | f32 | `MaximumCharging` | 3 | 3 | 🟡 | + +Also identified structurally, not by the solver: `+0x00` vtable, `+0x04` name +record, `+0x0c` `TargetType` as a bitmask (`Vessel|Craft|Structure` = 7), +`+0x14`/`+0x18` name hashes, `+0x7c`/`+0x80` muzzle-flash FX name record + hash. + +Unsolved (no consistent offset): `Cracker_ShotInterval`, `Cracker_SubShotCount`, +`MinimumCharging`, `MultiTargetCount`. + +### `Shell` (`0x200` bytes) + +| offset | enc | field | agree | distinct | conf | +|--------|-----|-------|------:|---------:|------| +| `+0x00c` | cnt | `DeleteFadeSpeed` | 39 | 2 | 🟡 | +| `+0x010` | cnt | `GuidanceType` | 9 | 4 | 🟡 | +| `+0x014` | cnt | `SpiralType` | 3 | 1 | 🟡 | +| `+0x020` | f32 | `Length` | 107 | 3 | ✅ | +| `+0x024` | f32 | `Volume` | 19 | 3 | ✅ | +| `+0x028` | f32 | `ShellMass` | 110 | 34 | ✅ | +| `+0x03c` | f32 | `HP` | 28 | 2 | 🟡 | +| `+0x040` | f32 | `LifeTime` | 94 | 43 | ✅ | +| `+0x044` | f32 | `FadeInTime` | 13 | 2 | 🟡 | +| `+0x048` | f32 | `FadeOutTime` | 7 | 1 | 🟡 | +| `+0x04c` | f32 | `Velocity` | 106 | 15 | ✅ | +| `+0x050` | f32 | `MinimumVelocity` | 11 | 2 | 🟡 | +| `+0x054` | f32 | `MaximumVelocity` | 29 | 7 | ✅ | +| `+0x058` | deg | `AngularVelocity` | 49 | 19 | ✅ | +| `+0x05c` | f32 | `Acceleration` | 9 | 4 | 🟡 | +| `+0x064` | f32 | `BeginGuidanceTimeAdjust` | 24 | 2 | 🟡 | +| `+0x068` | f32 | `EndGuidanceTime` | 19 | 4 | ✅ | +| `+0x070` | f32 | `Spiral_BeginTime` | 2 | 2 | 🟡 | +| `+0x074` | f32 | `Spiral_BeginTimeAdjust` | 25 | 2 | 🟡 | +| `+0x08c` | f32 | `MinimumRange` | 43 | 7 | ✅ | +| `+0x090` | f32 | `MaximumRange` | 117 | 21 | ✅ | +| `+0x0a0` | f32 | `Color_R` | 18 | 4 | ✅ | +| `+0x0a4` | f32 | `Color_G` | 121 | 3 | ✅ | +| `+0x0a8` | f32 | `Color_B` | 100 | 2 | 🟡 | +| `+0x0b4` | f32 | `Radius` | 89 | 10 | ✅ | +| `+0x0b8` | f32 | `Power` | 101 | 37 | ✅ | +| `+0x0bc` | f32 | `FailedDamageRatio` | 2 | 2 | 🟡 | +| `+0x0c0` | f32 | `PlayerLaserPower` | 11 | 6 | ✅ | +| `+0x0fc` | f32 | `ChaffResistRatio` | 24 | 1 | 🟡 | +| `+0x104` | f32 | `ChargingSizeRatio` | 3 | 1 | 🟡 | +| `+0x10c` | f32 | `SphereRadiusBegin` | 9 | 6 | 🟡 | +| `+0x110` | f32 | `SphereRadiusTurn` | 9 | 8 | 🟡 | +| `+0x114` | f32 | `SphereRadiusEnd` | 10 | 8 | ✅ | +| `+0x118` | f32 | `ExplosionTurnTime` | 3 | 2 | 🟡 | +| `+0x11c` | f32 | `ExplosionLifeTime` | 7 | 6 | 🟡 | +| `+0x120` | f32 | `ExplosionDamage_Maximum` | 4 | 4 | 🟡 | +| `+0x124` | f32 | `ExplosionDamage_OuterEdge` | 8 | 6 | 🟡 | +| `+0x128` | f32 | `Explosion_MaxDamageRadius` | 8 | 3 | 🟡 | +| `+0x130` | f32 | `SplitTime_Maximum` | 2 | 2 | 🟡 | +| `+0x134` | deg | `SplitCone` | 2 | 2 | 🟡 | +| `+0x148` | cnt | `NodeCount` | 39 | 4 | ✅ | +| `+0x164` | f32 | `Deceleration` | 9 | 2 | 🟡 | + +Unsolved: `BeginGuidanceTime`, `EndGuidanceTimeAdjust`, `Spiral_EndTime`, +`SplitTime_Minimum`, `StartingVelocity`, `Straight1Type`, `st1_df_pitch`, +`pitch0`, and the `sp_qu_*` / `sp_sp_*` / `sp_zg_*` spiral-motion family. Those +are declared by too few records (or by none that the solver could separate) — +they need a state where the shells are actually in flight. + +## The answer to the parked Route-B question + +Player-weapon fields that are **defaulted on disc**, now read exactly (`·` = the +disc carries the value already): + +| wep | LoadingCount | TriggerShotCount | MaximumRange | Power | Heating | Cooling | ReadyInterval | HitRatio | SprayAngle | +|---|---|---|---|---|---|---|---|---|---| +| 01 | · | **1** | · | · | · | · | · | · | · | +| 02 | · | · | · | **100** | · | · | · | **1** | · | +| 03 | · | · | · | · | · | · | · | · | **1** | +| 05 | · | **4** | · | · | · | · | · | · | · | +| 08 | · | · | · | · | · | · | · | **1** | · | +| 09 | · | · | · | · | **0.02** | · | · | · | **1** | +| 11 | **6** | · | · | · | · | · | · | · | · | +| 12 | · | · | · | · | **0** | · | · | **1** | · | +| 13 | · | · | · | **300** | · | · | · | · | · | +| 14 | · | · | · | · | · | · | · | · | **1** | +| 19 | · | · | · | · | · | **0.2** | · | · | **1** | +| 24 | · | **1** | · | · | · | · | · | · | **1** | +| 25 | · | · | **4000** | · | · | · | · | · | · | +| 26 | · | · | · | **500** | · | · | · | · | · | +| 27 | · | **1** | · | · | · | · | · | · | · | +| 28 | **5** | · | · | · | · | · | · | · | · | +| 29 | · | · | · | **100** | · | · | · | · | · | +| 30 | · | **4** | · | · | · | · | · | · | · | +| 36 | **5** | · | · | · | · | · | · | · | · | +| 37 | · | **1** | · | · | · | · | · | · | **1** | +| 38 | · | · | · | · | · | · | · | **1** | · | +| 39 | · | **1** | · | · | · | · | · | · | **1** | +| 40 | · | · | · | · | · | · | **0.1** | · | · | +| 48 | · | · | · | · | · | · | · | · | **1** | +| 50 | · | · | · | · | · | · | · | · | **1** | +| 52 | · | · | · | · | · | · | · | **1** | · | +| 53 | · | **1** | · | · | · | · | · | · | · | +| 54 | · | · | · | · | · | · | · | · | **1** | +| 55 | · | · | · | · | **0** | · | · | **1** | · | +| 56 | · | · | · | · | · | · | · | **1** | · | +| 57 | · | · | · | · | **0** | · | · | **1** | · | +| 58 | · | · | **10000** | · | · | · | · | · | **1** | +| 59 | · | · | · | · | · | · | · | **1** | **1** | +| 60 | · | **4** | · | **1000** | · | · | · | · | · | +| 62 | · | **1** | · | · | **0** | · | · | · | · | +| 66 | · | · | · | · | · | · | · | **1** | · | +| 67 | · | · | · | · | · | · | · | **1** | · | +| 68 | · | · | · | · | · | · | · | **1** | · | +| 69 | · | · | · | · | · | · | · | **1** | · | +| 70 | **0** | · | · | · | · | · | · | **1** | · | +| 71 | · | · | · | **10** | · | · | · | **1** | · | +| 81 | · | · | · | **300** | · | · | · | · | · | +| 82 | · | · | **10000** | · | · | · | · | · | **1** | +| 84 | · | · | · | · | · | · | · | · | **0.1** | +| 85 | · | **1** | · | · | **0** | · | · | · | · | + +`HitRatio` is **1.0 for every one of the 24 records that default it** — the +whole `…Ratio` family that blocked Route B is simply "no penalty". +`wep_82`'s defaulted field is `PlayerLaserPower` = **12000** (its `Power`, +12000, is on disc). + +## Cross-checks + +- **Against the independent screenshot route.** The Arsenal DATA SHEET + ([weapon-datasheet-runtime.md](../weapon-datasheet-runtime.md)) established + `Max. Lock Ons == TriggerShotCount`, and read **4** for `wep_05` and `wep_60` + off the panel. The memory read gives **4** for both — two unrelated methods, + same numbers. +- **Against the in-flight HUD.** `NOSE BM 06000` / `MAIN MPM 00300` matches + `wep_01` `LoadingCount = 6000` and `wep_02` `= 300` at `+0x28`. +- **Stability.** All 252 objects are **byte-identical** between the READY ROOM + and the ARSENAL, so these are load-time definition data, not transient state. +- **Self-consistency.** 121 records agree on `LoadingCount`'s offset across 33 + distinct values with zero contradictions; `Power`, 101 records / 37 distinct + values. A wrong offset cannot do that. + +## Incidental findings + +- **A duplicate, conflicting disc record.** Two `.tbl` entries declare + `Shell_TCAF_Ship_AAGun`; one sets `Power = 60.0`, the other omits it. The + runtime object holds **5**, i.e. the *omitting* declaration won. Any + reimplementation loading both will silently pick one — this says which. +- **Not every disc record is instantiated.** 131 disc records produced 126 + objects; the 5 with no runtime object are context variants that this save + never loads — `Weapon_TCAF_DeltaSaber_NoseGun_Ttrl` / `_Laser_Ttrl` + (tutorial), `_NoseGun_None`, `Weapon_TCAF_Ship_AAGun_EX5`, + `Weapon_ADAN_Attacker_S_GunTurret`. Running the tutorial should instantiate + the `_Ttrl` pair. No runtime object lacked a disc record. +- Defaulted `Power` values vary per weapon (1, 10, 100, 300, 500, 1000), so they + are **not** one constructor constant. Where they come from — the IDXD's + undecoded binary node/index region, or per-type code defaults — is **not + determined here** (`NEEDS-HUMAN` / follow-up). Either way the runtime values + above are ground truth, and they are now a decoding oracle for that region. + +## Reproduce + +```bash +export HOME=/sylph-home/re SDL_AUDIODRIVER=dummy +run-canary --audio --apu=sdl --log_mask=13 --logged_profile_slot_0_xuid=E0300000EFBEA3D4 & +tools/re-capture/skip_intro.sh # -> title +# LOAD GAME -> slot 01 -> YES -> READY ROOM (weapon tables load with the save) + +cargo run --release -p sylpheed-formats --example idxd_tokens -- \ + /dat/GP_MAIN_GAME_E.pak > /tmp/wep_tokens.txt +python3 tools/re-capture/weapon_runtime.py /tmp/wep_tokens.txt # report +python3 tools/re-capture/weapon_runtime.py /tmp/wep_tokens.txt --csv # full table +``` + +## What this unlocks + +`gmem.py` + "scan for the vtable, solve the layout against disc ground truth" is +**not weapon-specific**. The same three steps apply to any IDXD-backed +definition whose fields the disc defaults — craft/`UNIT` stats, which the Hangar +UI exposes only as a `Gross Weight` class and which +[the menu route could not reach at all](../weapon-datasheet-runtime.md), are the +obvious next target. diff --git a/tools/re-capture/gmem.py b/tools/re-capture/gmem.py new file mode 100644 index 0000000..f62a7ee --- /dev/null +++ b/tools/re-capture/gmem.py @@ -0,0 +1,162 @@ +#!/usr/bin/env python3 +"""Read the *live* guest memory of a running Xenia Canary. + +Canary backs the whole guest address space with a single shared-memory file, +`/dev/shm/xenia_memory_`, so the guest's RAM is readable from the host +with no debugger, no emulator patch and no pause: open the file, seek, read. + +The file is one flat image of Xenia's *physical* backing store; guest virtual +addresses map into it through Xenia's fixed table (memory.cc `map_info`). +`va_to_off()` implements that table, so callers work in guest VAs. + +Sub-commands + find search every allocated extent, print guest VAs + read [len] hexdump guest memory + words [n] dump n big-endian u32 / f32 pairs + +`` is a python literal-ish string: plain text, or `hex:0011aabb`. +Numbers accept 0x form. The scan uses SEEK_DATA so the ~4.6 GB of sparse holes +cost nothing. +""" + +import os +import re +import sys +import struct + +# (guest_va_lo, guest_va_hi_inclusive, file_offset_of_lo) — Xenia memory.cc. +MAP = [ + (0x00000000, 0x3FFFFFFF, 0x00000000), + (0x40000000, 0x7EFFFFFF, 0x40000000), + (0x7F000000, 0x7F0FFFFF, 0x00000000), + (0x7F100000, 0x7FFFFFFF, 0x00100000), + (0x80000000, 0x8FFFFFFF, 0x80000000), + (0x90000000, 0x9FFFFFFF, 0x80000000), + (0xA0000000, 0xBFFFFFFF, 0x100000000), + (0xC0000000, 0xDFFFFFFF, 0x100000000), + (0xE0000000, 0xFFFFFFFF, 0x100000000), +] + + +def va_to_off(va): + for lo, hi, base in MAP: + if lo <= va <= hi: + return base + (va - lo) + raise ValueError(f"va {va:#x} outside the guest map") + + +def off_to_vas(off): + """All guest VAs that alias this file offset (the map is many-to-one).""" + out = [] + for lo, hi, base in MAP: + if base <= off <= base + (hi - lo): + out.append(lo + (off - base)) + return out + + +def primary_va(off): + """The most useful VA for an offset: physical 0xA0000000+ / xex 0x80000000+.""" + vas = off_to_vas(off) + return vas[0] if vas else None + + +def mem_path(): + if len(sys.argv) > 1 and sys.argv[1].startswith("/dev/shm/"): + return sys.argv.pop(1) + cands = [f"/dev/shm/{n}" for n in os.listdir("/dev/shm") if n.startswith("xenia_memory_")] + if not cands: + sys.exit("no /dev/shm/xenia_memory_* — is Canary running?") + if len(cands) > 1: + sys.exit(f"several memory files, pass one explicitly: {cands}") + return cands[0] + + +def extents(fd, size): + """Yield (start, end) of the file's allocated (non-hole) ranges.""" + pos = 0 + while pos < size: + try: + data = os.lseek(fd, pos, os.SEEK_DATA) + except OSError: + return + try: + hole = os.lseek(fd, data, os.SEEK_HOLE) + except OSError: + hole = size + yield (data, hole) + pos = hole + + +def parse_pattern(s): + if s.startswith("hex:"): + return bytes.fromhex(s[4:]) + return s.encode("latin-1") + + +def cmd_find(f, size, args): + pat = parse_pattern(args[0]) + limit = int(args[1]) if len(args) > 1 else 64 + hits = 0 + CHUNK = 1 << 24 + for start, end in extents(f.fileno(), size): + pos = start + carry = b"" + carry_at = start + while pos < end: + f.seek(pos) + buf = f.read(min(CHUNK, end - pos)) + if not buf: + break + blob = carry + buf + base = carry_at + for m in re.finditer(re.escape(pat), blob): + off = base + m.start() + va = primary_va(off) + print(f"{off:#013x} va {va:#010x}" if va is not None else f"{off:#013x} va ?") + hits += 1 + if hits >= limit: + return + keep = len(pat) - 1 + carry = blob[-keep:] if keep else b"" + carry_at = base + len(blob) - len(carry) + pos += len(buf) + if hits == 0: + print("(no hits)", file=sys.stderr) + + +def cmd_read(f, size, args): + va = int(args[0], 0) + n = int(args[1], 0) if len(args) > 1 else 256 + f.seek(va_to_off(va)) + data = f.read(n) + for i in range(0, len(data), 16): + row = data[i : i + 16] + hexs = " ".join(f"{b:02x}" for b in row) + txt = "".join(chr(b) if 0x20 <= b < 0x7F else "." for b in row) + print(f"{va + i:08x} {hexs:<47} |{txt}|") + + +def cmd_words(f, size, args): + va = int(args[0], 0) + n = int(args[1], 0) if len(args) > 1 else 32 + f.seek(va_to_off(va)) + data = f.read(n * 4) + for i in range(0, len(data) - 3, 4): + (u,) = struct.unpack_from(">I", data, i) + (fl,) = struct.unpack_from(">f", data, i) + fs = f"{fl:.6g}" if -1e30 < fl < 1e30 else "" + print(f"{va + i:08x} +{i:04x} {u:#010x} {u:>12} {fs}") + + +def main(): + path = mem_path() + if len(sys.argv) < 2: + sys.exit(__doc__) + cmd, args = sys.argv[1], sys.argv[2:] + size = os.path.getsize(path) + with open(path, "rb") as f: + {"find": cmd_find, "read": cmd_read, "words": cmd_words}[cmd](f, size, args) + + +if __name__ == "__main__": + main() diff --git a/tools/re-capture/weapon_runtime.py b/tools/re-capture/weapon_runtime.py new file mode 100644 index 0000000..944b632 --- /dev/null +++ b/tools/re-capture/weapon_runtime.py @@ -0,0 +1,303 @@ +#!/usr/bin/env python3 +"""Solve the runtime `Weapon`/`Shell` struct layouts against disc ground truth, +then read the fields the disc leaves defaulted. + +The game parses every `weapon\\Weapon_*.tbl` IDXD record into two C++ objects, a +`Weapon` and its `Shell`. Each class lives in its own contiguous array in guest +RAM and is identifiable by its vtable pointer. Fields the IDXD omits (the +Route-B "defaulted" list) still hold their real values in those objects — put +there by the constructor before the parser overwrites what the disc supplies. + +Method (no guessing): + 1. read every disc record's explicitly-valued fields, split per sub-record + (`sylpheed-formats --example idxd_tokens`); + 2. read every runtime object out of the live emulator (`gmem`), keyed by the + object's own ID string; + 3. for each (field, byte-offset, encoding) triple, count how many weapons the + offset reproduces and how many it contradicts. An offset that agrees on + many and contradicts none is a confirmed binding; + 4. print the map, then the values at those offsets for the weapons whose disc + record omits the field. + +Step 3 is the whole safeguard: a wrong offset cannot silently agree with ~100 +independent records. + +Usage: weapon_runtime.py [--md] +""" + +import math +import os +import re +import struct +import sys + +sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) +import gmem # noqa: E402 + +# vtable VA -> (class name, object stride) +CLASSES = { + 0x820AF548: ("Weapon", 0xC0), + 0x820AF58C: ("Shell", 0x200), +} +NAME_STR_OFF = 0x10 # the name string sits +0x10 into a name record + + +# ---------------------------------------------------------------- disc side + + +def read_tokens(path): + """({class: {ID: {field: value}}}, {(class, ID): [field...]}) from the dump. + + A handful of IDs are declared by more than one `.tbl`. Where two such + declarations disagree on a field, that field is *ambiguous on disc* — the + runtime holds whichever definition won, so it must not be scored as a + contradiction. Those are collected separately, not silently merged. + """ + seen, ambiguous = {}, {} + cur = None + for line in open(path): + if line.startswith("REC "): + _, _, _, cls, rid = line.split() + cur = (cls, rid) + seen.setdefault(cur, []) + seen[cur].append({}) + elif line.startswith("F ") and cur is not None: + _, k, v = line.rstrip("\n").split(" ", 2) + seen[cur][-1][k] = v + + out = {} + for (cls, rid), defs in seen.items(): + merged = {} + for d in defs: + merged.update(d) + if len(defs) > 1: + bad = { + k + for k in {k for d in defs for k in d} + if len({d.get(k) for d in defs}) > 1 + } + if bad: + ambiguous[(cls, rid)] = sorted(bad) + for k in bad: + merged.pop(k, None) + out.setdefault(cls, {})[rid] = merged + return out, ambiguous + + +# ------------------------------------------------------------- runtime side + + +def scan_vtable(f, size, vt): + pat = struct.pack(">I", vt) + hits = [] + for a, b in gmem.extents(f.fileno(), size): + f.seek(a) + blob = f.read(b - a) + for m in re.finditer(re.escape(pat), blob): + off = a + m.start() + if off % 4 == 0: + hits.append(off) + return sorted(set(hits)) + + +def runtime_objects(f, size): + """{class: {ID: raw_bytes}} plus {class: [(va, ID)]} in array order.""" + objs, order = {}, {} + for vt, (cls, stride) in CLASSES.items(): + objs[cls], order[cls] = {}, [] + for off in scan_vtable(f, size, vt): + f.seek(off) + raw = f.read(stride) + (nameptr,) = struct.unpack_from(">I", raw, 4) + try: + f.seek(gmem.va_to_off(nameptr + NAME_STR_OFF)) + name = f.read(64).split(b"\0")[0].decode("latin-1") + except (ValueError, UnicodeDecodeError): + continue + objs[cls][name] = raw + order[cls].append((gmem.primary_va(off), name)) + return objs, order + + +# ------------------------------------------------------------------- solver + +ENC = { + "f32": lambda raw, o, ch: struct.unpack_from(">f", raw, o)[0], + "u32": lambda raw, o, ch: float(struct.unpack_from(">I", raw, o)[0]), + "deg": lambda raw, o, ch: math.degrees(struct.unpack_from(">f", raw, o)[0]), + # A charging weapon drains its magazine continuously, so the two counter + # fields are float32 on `IsCharging = Yes` records and int32 on the rest. + # Discovered from the runtime: `IsCharging` partitions the 8 float-encoded + # records exactly (see docs/re/weapon-struct-runtime.md). + "cnt": lambda raw, o, ch: ( + struct.unpack_from(">f", raw, o)[0] if ch else float(struct.unpack_from(">I", raw, o)[0]) + ), +} + + +def near(a, b): + if a == b: + return True + return abs(a - b) <= 2e-4 * max(abs(a), abs(b), 1e-6) + + +def solve(disc_cls, run_cls, stride, charging): + """{field: (off, enc, n_agree, [mismatch...])}""" + numeric = {} + for rid, fields in disc_cls.items(): + if rid not in run_cls: + continue + for k, v in fields.items(): + try: + numeric.setdefault(k, {})[rid] = float(v.rstrip("fF")) + except ValueError: + pass + + solved = {} + for field, samples in numeric.items(): + if len(samples) < 2: + continue + cands = [] + for off in range(0, stride - 3, 4): + for enc, fn in ENC.items(): + agree, bad = 0, [] + for rid, want in samples.items(): + got = fn(run_cls[rid], off, rid in charging) + if math.isfinite(got) and near(got, want): + agree += 1 + else: + bad.append((rid, want, got)) + if agree >= 2: + cands.append((len(bad), -agree, off, enc, agree, bad)) + if not cands: + continue + cands.sort() + nbad, _, off, enc, agree, bad = cands[0] + # A binding that contradicts a large slice of the evidence is not a + # binding at all -- it is a coincidence on the agreeing subset. + if len(bad) > 0.2 * len(samples): + continue + # Discriminating power: a field whose on-disc samples are all the same + # value matches any offset holding that constant, so such a binding is + # a coincidence waiting to happen. Count the distinct values that the + # *agreeing* records pin down. + distinct = len({round(v, 6) for rid, v in samples.items() if rid not in {b[0] for b in bad}}) + solved[field] = (off, enc, agree, bad, distinct) + + # Two fields cannot share one byte offset. Where the solver lands two on the + # same (offset, enc), keep the better-evidenced one and drop the other. + best_at = {} + for field, (off, enc, agree, bad, distinct) in solved.items(): + key = (off, enc) + score = (distinct, agree, -len(bad)) + if key not in best_at or score > best_at[key][1]: + best_at[key] = (field, score) + winners = {f for f, _ in best_at.values()} + return {f: v for f, v in solved.items() if f in winners}, numeric + + +def report(cls, disc_cls, run_cls, stride, out, charging): + solved, numeric = solve(disc_cls, run_cls, stride, charging) + p = out.append + p(f"\n### `{cls}` — runtime struct ({stride:#x} bytes/object)\n") + p("Confidence: ✅ = ≥10 disc records agree on ≥3 distinct values, none contradict.") + p("🟡 = consistent but thin evidence. ⚠️ = the runtime contradicts the disc " + "(listed below the table).\n") + p("| offset | enc | field | agree | distinct values | contradict | conf |") + p("|--------|-----|-------|------:|----------------:|-----------:|------|") + contradictions = [] + for field, (off, enc, agree, bad, distinct) in sorted(solved.items(), key=lambda kv: kv[1][0]): + if bad: + conf = "⚠️" + contradictions.append((field, off, enc, bad)) + elif agree >= 10 and distinct >= 3: + conf = "✅" + else: + conf = "🟡" + p(f"| `+{off:#05x}` | {enc} | `{field}` | {agree} | {distinct} | {len(bad)} | {conf} |") + + unsolved = sorted(set(numeric) - set(solved)) + if unsolved: + p(f"\nNumeric fields with no consistent offset (unsolved): " + f"{', '.join('`'+u+'`' for u in unsolved)}") + + for field, off, enc, bad in contradictions: + p(f"\n**`{field}` (`+{off:#05x}`) — runtime disagrees with disc on " + f"{len(bad)} record(s):**\n") + for rid, want, got in sorted(bad)[:24]: + p(f"- `{rid}`: disc `{want:g}` → runtime `{got:g}`") + + p(f"\n#### `{cls}` values the disc defaults, read from the live objects\n") + for field, (off, enc, agree, bad, distinct) in sorted(solved.items(), key=lambda kv: kv[1][0]): + if bad or agree < 10 or distinct < 3: + continue # only report from ✅ bindings + missing = [ + (rid, ENC[enc](run_cls[rid], off, rid in charging)) + for rid in sorted(disc_cls) + if rid in run_cls and field not in disc_cls[rid] + ] + if not missing: + continue + vals = sorted({round(v, 6) for _, v in missing}) + p(f"\n**`{field}`** (`+{off:#05x}`, {enc}) — defaulted by {len(missing)} of " + f"{len(run_cls)} records") + if len(vals) == 1: + p(f"\n> all = **{vals[0]:g}**") + else: + p("") + for rid, v in missing: + p(f"- `{rid}` = **{v:g}**") + return solved + + +def main(): + tokens = sys.argv[1] if len(sys.argv) > 1 else "/tmp/wep_tokens.txt" + disc, ambiguous = read_tokens(tokens) + path = gmem.mem_path() + size = os.path.getsize(path) + with open(path, "rb") as f: + objs, order = runtime_objects(f, size) + + # `IsCharging = Yes` switches the two counter fields to float32; the Shell + # inherits the flag from its Weapon (same ID suffix). + charging = { + rid for rid, f in disc.get("Weapon", {}).items() if f.get("IsCharging") == "Yes" + } + charging |= {"Shell" + rid[len("Weapon"):] for rid in set(charging)} + + out = [] + for cls, stride in [(c, s) for c, s in CLASSES.values()]: + d, r = disc.get(cls, {}), objs.get(cls, {}) + matched = set(d) & set(r) + out.append(f"\n") + report(cls, d, r, stride, out, charging) + if "--csv" in sys.argv: + import csv + + w = csv.writer(sys.stdout) + w.writerow(["class", "id", "field", "offset", "enc", "value", "source", "conf"]) + for cls, stride in [(c, st) for c, st in CLASSES.values()]: + d, r = disc.get(cls, {}), objs.get(cls, {}) + solved, _ = solve(d, r, stride, charging) + for field, (off, enc, agree, bad, distinct) in sorted( + solved.items(), key=lambda kv: kv[1][0] + ): + conf = "confirmed" if (not bad and agree >= 10 and distinct >= 3) else "tentative" + for rid in sorted(r): + val = ENC[enc](r[rid], off, rid in charging) + src = "disc" if field in d.get(rid, {}) else "defaulted-on-disc" + w.writerow([cls, rid, field, f"{off:#05x}", enc, f"{val:g}", src, conf]) + return + + if ambiguous: + out.append("\n### Disc records declared twice, with conflicting values\n") + out.append("These fields are ambiguous *on disc*; the runtime shows which " + "declaration won. They are excluded from the scoring above.\n") + for (cls, rid), fields in sorted(ambiguous.items()): + out.append(f"- `{cls}` `{rid}`: {', '.join('`'+f+'`' for f in fields)}") + print("\n".join(out)) + + +if __name__ == "__main__": + main()