From 6e292212fd33af854af8ea102ca396d9548e5bc9 Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Mon, 22 Jul 2024 17:15:18 -0500 Subject: [PATCH] fix gonzo executing same fscript, remove incomplete korean and chinese translations from being processed by suggs, 'fix' fscript XML new-line processing, add new xml create-at that inserts before index --- firestar/build.gradle | 2 +- firestar/src/main/java/Gonzo.java | 1 + firestar/src/main/java/Rizzo.java | 253 +- firestar/src/main/java/Suggs.java | 46 +- firestar/src/main/resources/post.fscript | 8590 +++++++++++++++++++++- 5 files changed, 8755 insertions(+), 137 deletions(-) diff --git a/firestar/build.gradle b/firestar/build.gradle index d0dedbc..b462ade 100644 --- a/firestar/build.gradle +++ b/firestar/build.gradle @@ -17,7 +17,7 @@ configurations { dependencies { implementation group: 'net.lingala.zip4j', name: 'zip4j', version: '2.11.5' implementation group: 'org.json', name: 'json', version: '20240303' - implementation "io.github.java-diff-utils:java-diff-utils:4.12" + implementation group: 'io.github.java-diff-utils', name: 'java-diff-utils', version: '4.12' implementation 'com.jetbrains.intellij.java:java-gui-forms-rt:203.7148.30' antTask 'com.jetbrains.intellij.java:java-compiler-ant-tasks:203.7148.30' diff --git a/firestar/src/main/java/Gonzo.java b/firestar/src/main/java/Gonzo.java index 8d43a3d..397d2ff 100644 --- a/firestar/src/main/java/Gonzo.java +++ b/firestar/src/main/java/Gonzo.java @@ -171,6 +171,7 @@ public class Gonzo { File fscript = new File(Main.inpath + "temp/fscript"); if (fscript.exists()) { new Rizzo(new FileInputStream(fscript), Main.inpath + "temp/"); // Lets rizz this mod up + fscript.delete(); } if (new File(System.getProperty("user.home") + "/.firestar/temp/delete.txt").isFile()) { diff --git a/firestar/src/main/java/Rizzo.java b/firestar/src/main/java/Rizzo.java index 2cc652b..36be464 100644 --- a/firestar/src/main/java/Rizzo.java +++ b/firestar/src/main/java/Rizzo.java @@ -31,6 +31,7 @@ import java.io.IOException; import java.io.InputStream; import java.io.PrintStream; import java.io.StringWriter; +import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.util.ArrayList; import java.util.Arrays; @@ -76,9 +77,9 @@ public class Rizzo { } private boolean parseArgs(String[] args, Object context) throws FirescriptFormatException { + System.out.println("Parsing Command: " + Arrays.toString(args)); if (args.length > 0) { if (context == null) { - System.out.println("Parsing Command: " + Arrays.toString(args)); if (args[0].equalsIgnoreCase("fscript")) { ver = Integer.parseInt(args[1]); // We'll do shit with this later if (ver > maxVer) throw new FirescriptFormatException(args[0], "script too new"); @@ -88,121 +89,121 @@ public class Rizzo { parseArgs(Arrays.copyOfRange(args, 2, args.length), newCtx); } else throw new FirescriptFormatException("fscript", "unknown command '" + args[0] + "'"); } else { - System.out.println("Parsing Command: " + Arrays.toString(args) + " with context: " + context.getClass().getName() + "@" + context.hashCode()); + System.out.println("Using context: " + context.getClass().getName() + "@" + context.hashCode()); if (args[0].equals("{")) { - System.out.println("New context parse: " + context.getClass().getName() + "@" + context.hashCode()); + System.out.println("New context block: " + context.getClass().getName() + "@" + context.hashCode()); parseScript(context); } else if (args[0].equals("}")) { System.out.println("Ending context block: " + context.getClass().getName() + "@" + context.hashCode()); return false; } else if (context instanceof File file) { - if (!file.exists()) return true; - if (args[0].equalsIgnoreCase("delete")) { - System.out.println("Deleting: " + file.getPath()); - if (file.getAbsolutePath().startsWith(workingDir)) { - if (file.isDirectory()) Main.deleteDir(file); - else file.delete(); - } - } else if (args[0].equalsIgnoreCase("xml")) { - try { - DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance(); - DocumentBuilder docBuilder = docFactory.newDocumentBuilder(); - // Mmmm, love me some INVALID XML corrections - ReplacingInputStream ris = new ReplacingInputStream(new ReplacingInputStream(new FileInputStream(file), "&", "&"), "\n", " "); - Document doc = docBuilder.parse(ris); - Node n = doc.createProcessingInstruction(StreamResult.PI_DISABLE_OUTPUT_ESCAPING, "\n"); - parseArgs(Arrays.copyOfRange(args, 1, args.length), doc); + if (file.exists()) { + if (args[0].equalsIgnoreCase("delete")) { + System.out.println("Deleting: " + file.getPath()); + if (file.getAbsolutePath().startsWith(workingDir)) { + if (file.isDirectory()) Main.deleteDir(file); + else file.delete(); + } + } else if (args[0].equalsIgnoreCase("xml")) { try { - FileOutputStream output = new FileOutputStream(file); - Transformer transformer = TransformerFactory.newInstance().newTransformer(); + DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance(); + DocumentBuilder docBuilder = docFactory.newDocumentBuilder(); + // Mmmm, love me some INVALID XML corrections. + ReplacingInputStream ris = new ReplacingInputStream(new ReplacingInputStream(new ReplacingInputStream(new FileInputStream(file), "\r\n", ""), "&", "&"), "\n", " "); + Document doc = docBuilder.parse(ris); + parseArgs(Arrays.copyOfRange(args, 1, args.length), doc); + try { + FileOutputStream output = new FileOutputStream(file); + Transformer transformer = TransformerFactory.newInstance().newTransformer(); - StreamResult result = new StreamResult(new StringWriter()); - DOMSource source = new DOMSource(doc); + StreamResult result = new StreamResult(new StringWriter()); + DOMSource source = new DOMSource(doc); - transformer.transform(source, result); - // Look ma, I'm breaking XML standards! - String xmlString = result.getWriter().toString() - .replace("&", "&") - .replace(" ", "\t") - .replace("", "\b") - .replace(" ", "\n") - .replace(" ", "\r") - .replace(" ", "\f"); - try (PrintStream ps = new PrintStream(output)) { - ps.print(xmlString); + transformer.transform(source, result); + // Look ma, I'm breaking XML standards! + String xmlString = result.getWriter().toString() + .replace("&", "&") + .replace(" ", "\t") + .replace("", "\b") + .replace(" ", "\n") + .replace(" ", "\r") + .replace(" ", "\f"); + try (PrintStream ps = new PrintStream(output)) { + ps.print(xmlString); + } + } catch (TransformerException ex) { + Logger.getLogger(Rizzo.class.getName()).log(Level.SEVERE, null, ex); } - } catch (TransformerException ex) { + } catch (SAXException | IOException | ParserConfigurationException ex) { Logger.getLogger(Rizzo.class.getName()).log(Level.SEVERE, null, ex); } - } catch (SAXException | IOException | ParserConfigurationException ex) { - Logger.getLogger(Rizzo.class.getName()).log(Level.SEVERE, null, ex); - } - } else if (args[0].equalsIgnoreCase("str") || args[0].equalsIgnoreCase("xstr")) { - try { - FileInputStream fis = new FileInputStream(file); - ByteArrayInputStream bais = new ByteArrayInputStream(fis.readAllBytes()); - fis.close(); - FileOutputStream fos = new FileOutputStream(file); - if (args[1].equalsIgnoreCase("append")) { - bais.transferTo(fos); - for (int s = 0; s < args[2].length(); s++) { - char c = args[2].charAt(s); - fos.write(c); + } else if (args[0].equalsIgnoreCase("str") || args[0].equalsIgnoreCase("xstr")) { + try { + FileInputStream fis = new FileInputStream(file); + ByteArrayInputStream bais = new ByteArrayInputStream(fis.readAllBytes()); + fis.close(); + FileOutputStream fos = new FileOutputStream(file); + if (args[1].equalsIgnoreCase("append")) { + bais.transferTo(fos); + for (int s = 0; s < args[2].length(); s++) { + char c = args[2].charAt(s); + fos.write(c); + } + } else if (args[1].equalsIgnoreCase("replace") || args[1].equalsIgnoreCase("delete")) { + String replacement = ""; + if (args[1].equalsIgnoreCase("replace")) replacement = args[3]; + ReplacingInputStream ris; + if (args[0].equalsIgnoreCase("xstr")) ris = new ReplacingInputStream(bais, args[2], replacement, false); + else ris = new ReplacingInputStream(bais, args[2], replacement); + ris.transferTo(fos); + ris.close(); } - } else if (args[1].equalsIgnoreCase("replace") || args[1].equalsIgnoreCase("delete")) { - String replacement = ""; - if (args[1].equalsIgnoreCase("replace")) replacement = args[3]; - ReplacingInputStream ris; - if (args[0].equalsIgnoreCase("xstr")) ris = new ReplacingInputStream(bais, args[2], replacement, false); - else ris = new ReplacingInputStream(bais, args[2], replacement); - ris.transferTo(fos); - ris.close(); + fos.flush(); + fos.close(); + } catch (IOException ex) { + Logger.getLogger(Rizzo.class.getName()).log(Level.SEVERE, null, ex); } - fos.flush(); - fos.close(); - } catch (IOException ex) { - Logger.getLogger(Rizzo.class.getName()).log(Level.SEVERE, null, ex); - } - } else if (args[0].equalsIgnoreCase("binedit")) { - int offset = Integer.parseInt(args[1]); - String bytes = args[2]; - if (bytes.length() % 2 != 0) throw new FirescriptFormatException(args[0], "invalid length of bytes"); - try { - byte[] ba; - try (FileInputStream fis = new FileInputStream(file)) { - ba = fis.readAllBytes(); - } - if (offset >= ba.length) throw new FirescriptFormatException(args[0], "offset is larger than file size"); - else { - byte[] in = HexFormat.of().parseHex(bytes); - System.arraycopy(in, 0, ba, offset, in.length); - try (FileOutputStream fos = new FileOutputStream(file)) { - fos.write(ba); - fos.flush(); + } else if (args[0].equalsIgnoreCase("binedit")) { + int offset = Integer.parseInt(args[1]); + String bytes = args[2]; + if (bytes.length() % 2 != 0) throw new FirescriptFormatException(args[0], "invalid length of bytes"); + try { + byte[] ba; + try (FileInputStream fis = new FileInputStream(file)) { + ba = fis.readAllBytes(); } - } - } catch (IOException ex) { - Logger.getLogger(Rizzo.class.getName()).log(Level.SEVERE, null, ex); - } - } else if (args[0].equalsIgnoreCase("patch")) { - try { - List original = Files.readAllLines(file.toPath()); - File patchFile = new File(workingDir + args[1]); - if (!patchFile.exists()) throw new FirescriptFormatException(args[0], "patch file doesn't exist"); - List patched = Files.readAllLines(patchFile.toPath()); - - Patch patch = UnifiedDiffUtils.parseUnifiedDiff(patched); - List result = DiffUtils.patch(original, patch); - - try (FileWriter fileWriter = new FileWriter(file)) { - for (String str : result) { - fileWriter.write(str + "\r\n"); + if (offset >= ba.length) throw new FirescriptFormatException(args[0], "offset is larger than file size"); + else { + byte[] in = HexFormat.of().parseHex(bytes); + System.arraycopy(in, 0, ba, offset, in.length); + try (FileOutputStream fos = new FileOutputStream(file)) { + fos.write(ba); + fos.flush(); + } } + } catch (IOException ex) { + Logger.getLogger(Rizzo.class.getName()).log(Level.SEVERE, null, ex); } - } catch (FirescriptFormatException | PatchFailedException | IOException ex) { - Logger.getLogger(Rizzo.class.getName()).log(Level.SEVERE, null, ex); - } - } else throw new FirescriptFormatException("file", "unknown command '" + args[0] + "'"); + } else if (args[0].equalsIgnoreCase("patch")) { + try { + List original = Files.readAllLines(file.toPath()); + File patchFile = new File(workingDir + args[1]); + if (!patchFile.exists()) throw new FirescriptFormatException(args[0], "patch file doesn't exist"); + List patched = Files.readAllLines(patchFile.toPath()); + + Patch patch = UnifiedDiffUtils.parseUnifiedDiff(patched); + List result = DiffUtils.patch(original, patch); + + try (FileWriter fileWriter = new FileWriter(file)) { + for (String str : result) { + fileWriter.write(str + "\r\n"); + } + } + } catch (FirescriptFormatException | PatchFailedException | IOException ex) { + Logger.getLogger(Rizzo.class.getName()).log(Level.SEVERE, null, ex); + } + } else throw new FirescriptFormatException("file", "unknown command '" + args[0] + "'"); + } else System.out.println("fscript: file context not found, skipping."); } else if (context instanceof Document document) { if (args[0].equalsIgnoreCase("modify")) { Element elem = (Element)traverse(document, args[1]); @@ -226,8 +227,7 @@ public class Rizzo { try { DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance(); DocumentBuilder docBuilder = docFactory.newDocumentBuilder(); - - ReplacingInputStream ris = new ReplacingInputStream(new FileInputStream(new File(workingDir + args[1])), "&", "&"); + ReplacingInputStream ris = new ReplacingInputStream(new ReplacingInputStream(new ReplacingInputStream(new FileInputStream(new File(workingDir + args[1])), "\r\n", ""), "&", "&"), "\n", " "); Document outDoc = docBuilder.parse(ris); NamedNodeMap nnm = outDoc.getDocumentElement().getAttributes(); @@ -253,17 +253,44 @@ public class Rizzo { else if (args[1].equalsIgnoreCase("value")) element.setNodeValue(args[2]); } else if (args[0].equalsIgnoreCase("create")) { - String newTag = args[1].substring(args[1].lastIndexOf(".")+1); - String newID = ""; - if (newTag.contains("#")) { - newID = newTag.substring(newTag.indexOf("#")+1); - newTag = newTag.substring(0, newTag.indexOf("#")); + String finalTag = args[1]; + String path = ""; + if (finalTag.lastIndexOf(".") > 0) { + path = args[1].substring(0, finalTag.lastIndexOf(".")); + finalTag = args[1].substring(finalTag.lastIndexOf(".")+1); } - Element newElem = element.getOwnerDocument().createElement(newTag); - if (newID != null && newID.length() > 0) newElem.setAttribute("id", newID); - traverse(element, args[1].substring(0, args[1].lastIndexOf("."))).appendChild(newElem); - parseArgs(Arrays.copyOfRange(args, 2, args.length), newElem); - } else throw new FirescriptFormatException(""); + String id = ""; + String name = ""; + if (finalTag.contains("#")) { + id = finalTag.substring(finalTag.indexOf("#")+1); + finalTag = finalTag.substring(0, finalTag.indexOf("#")); + } else if (finalTag.contains("$")) { + name = finalTag.substring(finalTag.indexOf("$")+1); + finalTag = finalTag.substring(0, finalTag.indexOf("$")); + } + Element finalElem = element.getOwnerDocument().createElement(finalTag); + if (id != null && id.length() > 0) finalElem.setAttribute("id", id); + if (name != null && name.length() > 0) finalElem.setAttribute("name", name); + traverse(element, path).appendChild(finalElem); + parseArgs(Arrays.copyOfRange(args, 2, args.length), finalElem); + } else if (args[0].equalsIgnoreCase("create-at")) { + int index = Integer.parseInt(args[1]); + String finalTag = args[2]; + String id = ""; + String name = ""; + if (finalTag.contains("#")) { + id = finalTag.substring(finalTag.indexOf("#")+1); + finalTag = finalTag.substring(0, finalTag.indexOf("#")); + } else if (finalTag.contains("$")) { + name = finalTag.substring(finalTag.indexOf("$")+1); + finalTag = finalTag.substring(0, finalTag.indexOf("$")); + } + Element finalElem = element.getOwnerDocument().createElement(finalTag); + if (id != null && id.length() > 0) finalElem.setAttribute("id", id); + if (name != null && name.length() > 0) finalElem.setAttribute("name", name); + element.insertBefore(finalElem, element.getChildNodes().item(index)); + parseArgs(Arrays.copyOfRange(args, 3, args.length), finalElem); + } else throw new FirescriptFormatException("xml", "unknown element command '" + args[0] + "'"); } else throw new FirescriptFormatException("context is unknown"); } } @@ -272,7 +299,7 @@ public class Rizzo { private Node traverse(Node owner, String selector) throws FirescriptFormatException { if (selector == null || selector.length() == 0 || owner == null) { - return null; + return owner; } String[] elems = selector.split("\\."); Node parent = owner; @@ -302,6 +329,7 @@ public class Rizzo { ns = ((Element)parent).getElementsByTagName(tag); for (int i = 0; i < ns.getLength(); i++) { Node n = ns.item(i); + if (n.getNodeName().equals("#text")) continue; if (((Element)n).getAttribute("id").equals(id)) { newParent = (Element)n; break; @@ -315,6 +343,7 @@ public class Rizzo { ns = ((Element)parent).getChildNodes(); for (int i = 0; i < ns.getLength(); i++) { Node n = ns.item(i); + if (n.getNodeName().equals("#text")) continue; if (((Element)n).getAttribute("name").equals(name)) { newParent = (Element)n; break; diff --git a/firestar/src/main/java/Suggs.java b/firestar/src/main/java/Suggs.java index c6aa0e0..e6d5c8c 100644 --- a/firestar/src/main/java/Suggs.java +++ b/firestar/src/main/java/Suggs.java @@ -453,31 +453,31 @@ public class Suggs implements ActionListener, ListSelectionListener { oArtistLine = ""; } int i2 = 0; - while (i2 < 17 /*17 languages*/) { + while (i2 < 15 /*17 languages*/) { String language = "INTERNAL_ERROR"; switch (i2) { - case 0: language = "american"; break; - case 1: language = "danish"; break; - case 2: language = "dutch"; break; - case 3: language = "english"; break; - case 4: language = "finnish"; break; - case 5: language = "french"; break; - case 6: language = "german"; break; - case 7: language = "italian"; break; - case 8: language = "japanese"; break; - case 9: language = "korean"; break; - case 10: language = "norwegian"; break; - case 11: language = "polish"; break; - case 12: language = "portuguese"; break; - case 13: language = "russian"; break; - case 14: language = "spanish"; break; - case 15: language = "swedish"; break; - case 16: language = "traditionalchinese"; break; - default: - int result = JOptionPane.showConfirmDialog(frame, "Firestar encountered an internal error.\nString 'language' exported to FSCRIPT was blank.", "Fatal Error", JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE); - if (result == JOptionPane.OK_OPTION) {System.exit(1);} //user safety - break; + case 0 -> language = "american"; + case 1 -> language = "danish"; + case 2 -> language = "dutch"; + case 3 -> language = "english"; + case 4 -> language = "finnish"; + case 5 -> language = "french"; + case 6 -> language = "german"; + case 7 -> language = "italian"; + case 8 -> language = "japanese"; + case 9 -> language = "norwegian"; + case 10 -> language = "polish"; + case 11 -> language = "portuguese"; + case 12 -> language = "russian"; + case 13 -> language = "spanish"; + case 14 -> language = "swedish"; + default -> { + int result = JOptionPane.showConfirmDialog(frame, "Firestar encountered an internal error.\nString 'language' exported to FSCRIPT was blank.", "Fatal Error", JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE); + if (result == JOptionPane.OK_OPTION) {System.exit(1);} //user safety + } } + //case 9: language = "korean"; break; + //case 16: language = "traditionalchinese"; break; ps.println("file \"data/plugins/languages/"+language+"/entries.xml\" xml "+ocmd+" StringTable.entry#MT_"+trackno+" set attribute \"string\" \""+oArtistLine+oTitle.replace("\"", "\\\"")+"\""); i2++; } @@ -596,7 +596,7 @@ public class Suggs implements ActionListener, ListSelectionListener { progressDialog.destroyDialog(); frame.dispose(); - //Main.deleteDir(new File(Main.inpath + "temp/ffmpeg/")); + Main.deleteDir(new File(Main.inpath + "temp/ffmpeg/")); Clifford saveDialog = new Clifford(); saveDialog.isSoundtrack = true; saveDialog.Action(frame, new File(Main.inpath + "temp/")); diff --git a/firestar/src/main/resources/post.fscript b/firestar/src/main/resources/post.fscript index bbcd742..62d30e4 100644 --- a/firestar/src/main/resources/post.fscript +++ b/firestar/src/main/resources/post.fscript @@ -1,2 +1,8590 @@ -# POST INSTALL FSCRIPT fscript 1 +file "data/HandlingStats/ag_systems2048/1/handlingstats.xml" { + str replace "\"head_tilt" "\" head_tilt" + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "70" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.0" + set attribute "pos_length" "-13.0" + set attribute "spring_horiz" "7" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.1" + set attribute "pos_length" "-10.0" + set attribute "spring_horiz" "12" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "25" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "184" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "144" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "7" + set attribute "handling" "6" + set attribute "shield" "7" + set attribute "speed" "4" + set attribute "thrust" "9" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.3" + set attribute "internalSpeed" "5" + set attribute "shipAmount" "1.3" + set attribute "shipSpeed" "5" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3" + set attribute "recharge_time" "0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "28" + set attribute "amount" "495" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.23" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "36.5" + set attribute "amount" "641" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.23" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "30" + set attribute "amount" "913" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.23" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "29.5" + set attribute "amount" "1293" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.23" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "33" + set attribute "amount" "1877" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.23" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/ag_systems2048/2/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "70" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "4.0" + set attribute "pos_length" "-15.0" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.7" + set attribute "pos_length" "-11.0" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "25" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "175" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "135" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "6" + set attribute "handling" "10" + set attribute "shield" "5" + set attribute "speed" "4" + set attribute "thrust" "8" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3" + set attribute "recharge_time" "0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "28" + set attribute "amount" "469" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "36.5" + set attribute "amount" "615" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "30" + set attribute "amount" "887" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "29.5" + set attribute "amount" "1267" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "33" + set attribute "amount" "1851" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/ag_systems2048/3/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "70" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "4.0" + set attribute "pos_length" "-15.0" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.7" + set attribute "pos_length" "-11.0" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "25" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "173" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "133" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "6" + set attribute "handling" "8" + set attribute "shield" "3" + set attribute "speed" "8" + set attribute "thrust" "8" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3" + set attribute "recharge_time" "0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "36" + set attribute "amount" "525" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.54" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "44.5" + set attribute "amount" "671" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.54" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "38" + set attribute "amount" "939" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.54" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "37.5" + set attribute "amount" "1323" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.54" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "41" + set attribute "amount" "1907" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.54" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/ag_systems2048/4/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "70" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "4.0" + set attribute "pos_length" "-15.0" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.7" + set attribute "pos_length" "-11.0" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "25" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "100" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "60" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "6" + set attribute "handling" "10" + set attribute "shield" "6" + set attribute "speed" "4" + set attribute "thrust" "8" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3" + set attribute "recharge_time" "0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "26" + set attribute "amount" "469" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "800" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "34.5" + set attribute "amount" "615" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "800" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "28" + set attribute "amount" "887" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "800" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "27.5" + set attribute "amount" "1267" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "800" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "30" + set attribute "amount" "1851" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.68" + set attribute "falloff" "925" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "800" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/auricom2048/1/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "headtilt" "0.3" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "headtilt" "0.8" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "1.3" + set attribute "length" "1.3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.0" + set attribute "pos_length" "-13.0" + set attribute "spring_horiz" "7" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.1" + set attribute "pos_length" "-10.0" + set attribute "spring_horiz" "12" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "28" + set attribute "down_speed" "190" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "195" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "155" + set attribute "weight_distribution" "4.0" + set attribute "width" "6.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "9" + set attribute "handling" "5" + set attribute "shield" "10" + set attribute "speed" "4" + set attribute "thrust" "7" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3" + set attribute "recharge_time" "0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "16.5" + set attribute "amount" "469" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "21" + set attribute "amount" "615" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "21.5" + set attribute "amount" "887" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.1" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "24" + set attribute "amount" "1267" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "27.5" + set attribute "amount" "1851" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.9" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/auricom2048/2/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "headtilt" "0.3" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "headtilt" "0.8" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "1.3" + set attribute "length" "1.3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.5" + set attribute "pos_length" "-15.0" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.1" + set attribute "pos_length" "-11.0" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "28" + set attribute "down_speed" "190" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "185" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "145" + set attribute "weight_distribution" "4.0" + set attribute "width" "6.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "8" + set attribute "handling" "7" + set attribute "shield" "5" + set attribute "speed" "5" + set attribute "thrust" "7" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3" + set attribute "recharge_time" "0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "16.5" + set attribute "amount" "495" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.42" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "21" + set attribute "amount" "641" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.42" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "21.5" + set attribute "amount" "913" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.42" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "24" + set attribute "amount" "1293" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.42" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "27.5" + set attribute "amount" "1877" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.42" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/auricom2048/3/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "headtilt" "0.3" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "headtilt" "0.8" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "1.3" + set attribute "length" "1.3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.5" + set attribute "pos_length" "-15.0" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.1" + set attribute "pos_length" "-11.0" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "28" + set attribute "down_speed" "190" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "181" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "141" + set attribute "weight_distribution" "4.0" + set attribute "width" "6.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "7" + set attribute "handling" "5" + set attribute "shield" "6" + set attribute "speed" "9" + set attribute "thrust" "7" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "24.5" + set attribute "amount" "569" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.02" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "29" + set attribute "amount" "716" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.02" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "29.5" + set attribute "amount" "990" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.02" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.1" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "33" + set attribute "amount" "1370" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.02" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "35.5" + set attribute "amount" "1954" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.02" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.9" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/auricom2048/4/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "headtilt" "0.3" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "headtilt" "0.8" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "1.3" + set attribute "length" "1.3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.5" + set attribute "pos_length" "-15.0" + set attribute "spring_horiz" "7" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.1" + set attribute "pos_length" "-10.0" + set attribute "spring_horiz" "12" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "28" + set attribute "down_speed" "190" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "175" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "135" + set attribute "weight_distribution" "4.0" + set attribute "width" "7" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "9" + set attribute "handling" "5" + set attribute "shield" "5" + set attribute "speed" "4" + set attribute "thrust" "7" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3" + set attribute "recharge_time" "0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "16.5" + set attribute "amount" "469" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1.5" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "21" + set attribute "amount" "615" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1.5" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "21.5" + set attribute "amount" "887" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.1" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1.5" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "24" + set attribute "amount" "1267" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1.5" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "27.5" + set attribute "amount" "1851" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "50" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.9" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1.5" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/feisar2048/1/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "70" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "0" + set attribute "lookat_length" "35" + set attribute "pos_height" "3.0" + set attribute "pos_length" "-13.0" + set attribute "spring_horiz" "7" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.1" + set attribute "pos_length" "-10.0" + set attribute "spring_horiz" "12" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "40" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "187" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "147" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "8" + set attribute "handling" "6" + set attribute "shield" "8" + set attribute "speed" "3" + set attribute "thrust" "8" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "29" + set attribute "amount" "469" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "0.8" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "28" + set attribute "amount" "615" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.2" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "25" + set attribute "amount" "887" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.2" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.1" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "26.5" + set attribute "amount" "1267" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.2" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "30.0" + set attribute "amount" "1851" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.2" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "9.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/feisar2048/2/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "70" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "4.0" + set attribute "pos_length" "-15.0" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.7" + set attribute "pos_length" "-11.0" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "40" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "180" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "140" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "7" + set attribute "handling" "9" + set attribute "shield" "6" + set attribute "speed" "4" + set attribute "thrust" "8" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "21" + set attribute "amount" "469" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.7" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "28" + set attribute "amount" "615" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.7" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "25" + set attribute "amount" "887" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.7" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "26.5" + set attribute "amount" "1267" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.7" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "30.0" + set attribute "amount" "1851" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.7" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/feisar2048/3/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "70" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "4.0" + set attribute "pos_length" "-15.0" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.7" + set attribute "pos_length" "-11.0" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "40" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "173" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "133" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "6" + set attribute "handling" "7" + set attribute "shield" "4" + set attribute "speed" "8" + set attribute "thrust" "8" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "21" + set attribute "amount" "382" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.8" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "36" + set attribute "amount" "692" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.4" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "33" + set attribute "amount" "964" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.4" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.1" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "34.5" + set attribute "amount" "1344" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.4" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "38" + set attribute "amount" "1928" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.4" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "9.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/feisar2048/4/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "70" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "4.0" + set attribute "pos_length" "-15.0" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.7" + set attribute "pos_length" "-11.0" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "40" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "173" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "133" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "6" + set attribute "handling" "7" + set attribute "shield" "4" + set attribute "speed" "8" + set attribute "thrust" "8" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.4" + set attribute "internalSpeed" "7" + set attribute "shipAmount" "1.4" + set attribute "shipSpeed" "6" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "21" + set attribute "amount" "382" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.8" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "36" + set attribute "amount" "692" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.4" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "33" + set attribute "amount" "964" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.4" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.1" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "34.5" + set attribute "amount" "1344" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.4" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "8.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "38" + set attribute "amount" "1928" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.4" + set attribute "falloff" "1000" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "9.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/piranha2048/1/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.0" + set attribute "pos_length" "-13.0" + set attribute "spring_horiz" "7" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.1" + set attribute "pos_length" "-10.0" + set attribute "spring_horiz" "12" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "40" + set attribute "down_speed" "120" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "191" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "151" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "9" + set attribute "handling" "3" + set attribute "shield" "9" + set attribute "speed" "6" + set attribute "thrust" "6" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.3" + set attribute "internalSpeed" "5" + set attribute "shipAmount" "1.3" + set attribute "shipSpeed" "5" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "14.5" + set attribute "amount" "520" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "0.76" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "18" + set attribute "amount" "666" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "0.76" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "18.5" + set attribute "amount" "939" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "0.76" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "22.5" + set attribute "amount" "1319" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "0.76" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "26" + set attribute "amount" "1903" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "0.76" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/piranha2048/2/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.5" + set attribute "pos_length" "-15.3" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.4" + set attribute "pos_length" "-11.4" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "40" + set attribute "down_speed" "120" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "173" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "133" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "8" + set attribute "handling" "7" + set attribute "shield" "4" + set attribute "speed" "7" + set attribute "thrust" "6" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.3" + set attribute "internalSpeed" "5" + set attribute "shipAmount" "1.3" + set attribute "shipSpeed" "5" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "14.5" + set attribute "amount" "515" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.36" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "18" + set attribute "amount" "654" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.36" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "18.5" + set attribute "amount" "939" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.36" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "22.5" + set attribute "amount" "1321" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.36" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "26" + set attribute "amount" "1905" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.36" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/piranha2048/3/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.5" + set attribute "pos_length" "-15.3" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.4" + set attribute "pos_length" "-11.4" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "40" + set attribute "down_speed" "120" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "173" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "133" + set attribute "weight_distribution" "-4.0" + set attribute "width" "5.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "7" + set attribute "handling" "4" + set attribute "shield" "4" + set attribute "speed" "10" + set attribute "thrust" "6" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.3" + set attribute "internalSpeed" "5" + set attribute "shipAmount" "1.3" + set attribute "shipSpeed" "5" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "22.5" + set attribute "amount" "592" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "0.96" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "26" + set attribute "amount" "740" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "0.96" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "26.5" + set attribute "amount" "1016" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "0.96" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "30.5" + set attribute "amount" "1398" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "0.96" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "34" + set attribute "amount" "1982" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "0.96" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "40" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/piranha2048/4/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "2.0" + set attribute "length" "0" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.5" + set attribute "pos_length" "-15.3" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.4" + set attribute "pos_length" "-11.4" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "40" + set attribute "down_speed" "120" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "173" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "133" + set attribute "weight_distribution" "-4.0" + set attribute "width" "3" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "7" + set attribute "handling" "4" + set attribute "shield" "4" + set attribute "speed" "10" + set attribute "thrust" "6" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.3" + set attribute "internalSpeed" "5" + set attribute "shipAmount" "1.3" + set attribute "shipSpeed" "5" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "23.5" + set attribute "amount" "607" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "0.10" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.0" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "27" + set attribute "amount" "755" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "0.10" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "27.5" + set attribute "amount" "1031" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "0.10" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.6" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "31.5" + set attribute "amount" "1413" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "0.10" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "35" + set attribute "amount" "1997" + set attribute "falloff" "700" + set attribute "gain" "1000" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "0.10" + set attribute "falloff" "700" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "60" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.3" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "85" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/qirex2048/1/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "1.3" + set attribute "length" "1.3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.0" + set attribute "pos_length" "-13.0" + set attribute "spring_horiz" "7" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.1" + set attribute "pos_length" "-10" + set attribute "spring_horiz" "12" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "35" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "191" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "151" + set attribute "weight_distribution" "4.0" + set attribute "width" "6.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "10" + set attribute "handling" "5" + set attribute "shield" "9" + set attribute "speed" "5" + set attribute "thrust" "7" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.3" + set attribute "internalSpeed" "5" + set attribute "shipAmount" "1.3" + set attribute "shipSpeed" "5" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "18.5" + set attribute "amount" "495" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "24" + set attribute "amount" "641" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "23" + set attribute "amount" "913" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.1" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "25" + set attribute "amount" "1293" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "110" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "28.5" + set attribute "amount" "1877" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.04" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "110" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/qirex2048/2/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "1.3" + set attribute "length" "1.3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.5" + set attribute "pos_length" "-14.3" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "0.2" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.3" + set attribute "pos_length" "-11" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "35" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "188" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "148" + set attribute "weight_distribution" "4.0" + set attribute "width" "6.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "9" + set attribute "handling" "7" + set attribute "shield" "8" + set attribute "speed" "6" + set attribute "thrust" "7" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.3" + set attribute "internalSpeed" "5" + set attribute "shipAmount" "1.3" + set attribute "shipSpeed" "5" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "18.5" + set attribute "amount" "469" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.39" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "24" + set attribute "amount" "615" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.39" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "23" + set attribute "amount" "887" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.39" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "25" + set attribute "amount" "1267" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.39" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "28.5" + set attribute "amount" "1851" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.39" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "16" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "120" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/qirex2048/3/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "1.3" + set attribute "length" "1.3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.5" + set attribute "pos_length" "-14.3" + set attribute "spring_horiz" "5" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.3" + set attribute "pos_length" "-11" + set attribute "spring_horiz" "10" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "35" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "177" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "137" + set attribute "weight_distribution" "4.0" + set attribute "width" "6.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "8" + set attribute "handling" "6" + set attribute "shield" "5" + set attribute "speed" "9" + set attribute "thrust" "7" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.3" + set attribute "internalSpeed" "5" + set attribute "shipAmount" "1.3" + set attribute "shipSpeed" "5" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "26.5" + set attribute "amount" "571" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "32" + set attribute "amount" "717" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "110" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "31" + set attribute "amount" "990" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.1" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "33" + set attribute "amount" "1370" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "110" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "36.5" + set attribute "amount" "1954" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "8" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "115" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "110" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/HandlingStats/qirex2048/4/handlingstats.xml" { + xml modify Handling.Stats.InternalCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BackwardCamera { + set attribute "fov" "65" + set attribute "height" "0" + set attribute "length" "3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.BonnetCamera { + set attribute "fov" "65" + set attribute "height" "1.3" + set attribute "length" "1.3" + set attribute "pitch" "0" + } + xml modify Handling.Stats.ExternalCameraFar { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "0" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.5" + set attribute "pos_length" "-14.3" + set attribute "spring_horiz" "7" + set attribute "spring_vert" "10" + } + xml modify Handling.Stats.ExternalCameraClose { + set attribute "fov" "60" + set attribute "head_tilt" "-0.1" + set attribute "lookat_height" "-4" + set attribute "lookat_length" "25" + set attribute "pos_height" "3.3" + set attribute "pos_length" "-11" + set attribute "spring_horiz" "12" + set attribute "spring_vert" "12" + } + xml modify Handling.Stats.AirbrakeGraphics { + set attribute "amount" "35" + set attribute "down_speed" "100" + set attribute "up_speed" "500" + } + xml modify Handling.Stats.Misc { + set attribute "easyshield" "191" + set attribute "height" "3.5" + set attribute "length" "13" + set attribute "shield" "151" + set attribute "weight_distribution" "4.0" + set attribute "width" "6.0" + } + xml modify Handling.Stats.FE { + set attribute "firepower" "10" + set attribute "handling" "6" + set attribute "shield" "9" + set attribute "speed" "5" + set attribute "thrust" "7" + } + xml modify Handling.Stats.Tilt { + set attribute "internalAmount" "1.3" + set attribute "internalSpeed" "5" + set attribute "shipAmount" "1.3" + set attribute "shipSpeed" "5" + } + xml modify Handling.Stats.ManualShieldStats { + set attribute "life_time" "3.0" + set attribute "recharge_time" "0.0" + } + xml modify Handling.Stats.BespokeStats { + } + xml modify Handling.Stats.Class$VENOM.Engine { + set attribute "accelcap" "18.5" + set attribute "amount" "494" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$VENOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$VENOM.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$VENOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$VENOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$VENOM.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$VENOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$VENOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$VENOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Engine { + set attribute "accelcap" "24" + set attribute "amount" "640" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$FLASH.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$FLASH.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$FLASH.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$FLASH.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "6.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$FLASH.Physical { + set attribute "flight_gravity" "150" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "80" + } + xml modify Handling.Stats.Class$FLASH.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$FLASH.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$FLASH.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Engine { + set attribute "accelcap" "23" + set attribute "amount" "913" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$RAPIER.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$RAPIER.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$RAPIER.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$RAPIER.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.1" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$RAPIER.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "100" + } + xml modify Handling.Stats.Class$RAPIER.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$RAPIER.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$RAPIER.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Engine { + set attribute "accelcap" "25" + set attribute "amount" "1293" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$PHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$PHANTOM.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$PHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$PHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.5" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$PHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "110" + } + xml modify Handling.Stats.Class$PHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$PHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$PHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Engine { + set attribute "accelcap" "28.5" + set attribute "amount" "1877" + set attribute "falloff" "300" + set attribute "gain" "600" + set attribute "turbo" "200" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Brakes { + set attribute "amount" "100" + set attribute "falloff" "100" + set attribute "gain" "100" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Turning { + set attribute "amount" "1.22" + set attribute "falloff" "850" + set attribute "gain" "500" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Airbrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "900" + set attribute "sideshift" "450" + set attribute "slidegrip" "30" + set attribute "turn" "9" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Antigrav { + set attribute "grip_air" "3.0" + set attribute "grip_ground" "7.8" + set attribute "landing_rebound" "0.3" + set attribute "rebound" "0.4" + set attribute "rebound_jump_time" "2.0" + set attribute "ride_height" "5.5" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Physical { + set attribute "flight_gravity" "155" + set attribute "mass" "1" + set attribute "normal_gravity" "5" + set attribute "track_gravity" "110" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Pitch { + set attribute "antigrav_height_adjust" "1.0" + set attribute "pitch_air" "0.2" + set attribute "pitch_damping" "5" + set attribute "pitch_ground" "1.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.Assist { + set attribute "laDistConst" "10.0" + set attribute "laDistMax" "75.0" + set attribute "laDistVelMul" "0.4" + set attribute "maxAngVel" "2.0" + set attribute "maxTorque" "50.0" + set attribute "notInUseStrength" "0.1" + set attribute "penaltyDuration" "0.25" + set attribute "springMul" "-12.0" + set attribute "thrustPercentOnUse" "95" + set attribute "torqueMul" "10.0" + } + xml modify Handling.Stats.Class$SUPERPHANTOM.NewBrake { + set attribute "amount" "4" + set attribute "drag" "2" + set attribute "falloff" "500" + set attribute "gain" "800" + set attribute "turn" "9" + } +} +file "data/plugins/frontend/NEWGUI/Extras_Definition_AS.xml" { + xml modify Screen.Screen$extrasCredits.TouchScroll { + # + create-at 16 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.82" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "This build is brought to you by" + } + } + create-at 17 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.82" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "FIRESTAR MOD MANAGER" + } + } + create-at 18 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "" + } + } + create-at 19 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Developed by" + } + } + create-at 20 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "bonkmaykr" + } + } + create-at 21 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Wirlaburla" + } + } + create-at 22 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string " " + } + } + create-at 23 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "With help from" + } + } + create-at 24 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "ThatOneBonk" + } + } + create-at 25 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string " " + } + } + create-at 26 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Special Thanks to" + } + } + create-at 27 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Yifan Lu" + } + } + create-at 28 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "HellfireWZ" + } + } + create-at 29 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "kanar" + } + } + create-at 30 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "ChaCheeChoo" + } + } + } +} +file "data/plugins/frontend/NEWGUI/Extras_Definition_EU.xml" { + xml modify Screen.Screen$extrasCredits.TouchScroll { + # + create-at 16 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.82" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "This build is brought to you by" + } + } + create-at 17 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.82" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "FIRESTAR MOD MANAGER" + } + } + create-at 18 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "" + } + } + create-at 19 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Developed by" + } + } + create-at 20 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "bonkmaykr" + } + } + create-at 21 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Wirlaburla" + } + } + create-at 22 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string " " + } + } + create-at 23 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "With help from" + } + } + create-at 24 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "ThatOneBonk" + } + } + create-at 25 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string " " + } + } + create-at 26 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Special Thanks to" + } + } + create-at 27 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Yifan Lu" + } + } + create-at 28 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "HellfireWZ" + } + } + create-at 29 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "kanar" + } + } + create-at 30 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "ChaCheeChoo" + } + } + } +} +file "data/plugins/frontend/NEWGUI/Extras_Definition_JP.xml" { + xml modify Screen.Screen$extrasCredits.TouchScroll { + # + create-at 16 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.82" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "This build is brought to you by" + } + } + create-at 17 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.82" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "FIRESTAR MOD MANAGER" + } + } + create-at 18 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "" + } + } + create-at 19 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Developed by" + } + } + create-at 20 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "bonkmaykr" + } + } + create-at 21 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Wirlaburla" + } + } + create-at 22 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string " " + } + } + create-at 23 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "With help from" + } + } + create-at 24 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "ThatOneBonk" + } + } + create-at 25 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string " " + } + } + create-at 26 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Special Thanks to" + } + } + create-at 27 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Yifan Lu" + } + } + create-at 28 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "HellfireWZ" + } + } + create-at 29 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "kanar" + } + } + create-at 30 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "ChaCheeChoo" + } + } + } +} +file "data/plugins/frontend/NEWGUI/Extras_Definition_US.xml" { + xml modify Screen.Screen$extrasCredits.TouchScroll { + # + create-at 16 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.82" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "This build is brought to you by" + } + } + create-at 17 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.82" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "FIRESTAR MOD MANAGER" + } + } + create-at 18 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "" + } + } + create-at 19 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Developed by" + } + } + create-at 20 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "bonkmaykr" + } + } + create-at 21 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Wirlaburla" + } + } + create-at 22 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string " " + } + } + create-at 23 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "With help from" + } + } + create-at 24 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "ThatOneBonk" + } + } + create-at 25 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string " " + } + } + create-at 26 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "scale" "0.7" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Special Thanks to" + } + } + create-at 27 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "Yifan Lu" + } + } + create-at 28 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "HellfireWZ" + } + } + create-at 29 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "kanar" + } + } + create-at 30 Text { + set attribute "PushHeight" "1" + create Values { + set attribute "Align" "centre" + set attribute "x" "460" + set attribute "color" "FEGlobals->Blue2048" + set attribute "font" "NEOSANS_BOLD" + set attribute string "ChaCheeChoo" + } + } + } +} \ No newline at end of file