From 2f753992f8a467eafb375255afb145d7984e0872 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Sun, 25 Dec 2016 22:24:49 +0000
Subject: [PATCH] Add tram type - Newag Nevelo 126N

---
 index.js |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/index.js b/index.js
index ed03ca4..06560e1 100644
--- a/index.js
+++ b/index.js
@@ -141,11 +141,15 @@
 		} else if (id <= 626) {
 			type = 'NGT6 (2)';
 		}
-	} else if (801 <= id && id <= 824) {
+	} else if(801 <= id && id <= 824) {
 		prefix = 'RY';
 		type = 'NGT8';
 		low = 2;
-	} else if (901 <= id && id <= 936) {
+	} else if(id == 899) {
+		prefix = 'RY';
+		type = '126N';
+		low = 2;
+	} else if(901 <= id && id <= 936) {
 		prefix = 'RG';
 		type = '2014N';
 		low = 2;

--
Gitblit v1.9.1