mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-16 18:55:03 -04:00
circuit board names
This commit is contained in:
parent
e4dadbae26
commit
ac79b3c696
@ -31,6 +31,8 @@ oc:item.NetworkCard.name=Netzwerkkarte
|
|||||||
oc:item.RedstoneCard.name=Redstonekarte
|
oc:item.RedstoneCard.name=Redstonekarte
|
||||||
oc:item.WirelessNetworkCard.name=Drahtlosnetzwerkkarte
|
oc:item.WirelessNetworkCard.name=Drahtlosnetzwerkkarte
|
||||||
oc:item.IronNugget.name=Eisennugget
|
oc:item.IronNugget.name=Eisennugget
|
||||||
|
oc:item.CircuitBoard.name=Basis Platte
|
||||||
|
oc:item.PrintedCircuitBoard.name=Leiterplatte
|
||||||
|
|
||||||
# GUI
|
# GUI
|
||||||
oc:gui.Analyzer.Address=Adresse
|
oc:gui.Analyzer.Address=Adresse
|
||||||
|
@ -35,6 +35,8 @@ oc:item.NetworkCard.name=Network Card
|
|||||||
oc:item.RedstoneCard.name=Redstone Card
|
oc:item.RedstoneCard.name=Redstone Card
|
||||||
oc:item.WirelessNetworkCard.name=Wireless Network Card
|
oc:item.WirelessNetworkCard.name=Wireless Network Card
|
||||||
oc:item.IronNugget.name=Iron Nugget
|
oc:item.IronNugget.name=Iron Nugget
|
||||||
|
oc:item.CircuitBoard.name=Circuit Board
|
||||||
|
oc:item.PrintedCircuitBoard.name=Printed Circuit Board(PCB)
|
||||||
|
|
||||||
# GUI
|
# GUI
|
||||||
oc:gui.Analyzer.Address=Address
|
oc:gui.Analyzer.Address=Address
|
||||||
|
@ -36,8 +36,8 @@ object Items {
|
|||||||
// ----------------------------------------------------------------------- //
|
// ----------------------------------------------------------------------- //
|
||||||
// Crafting
|
// Crafting
|
||||||
var card1, card2, card3: item.Card = null
|
var card1, card2, card3: item.Card = null
|
||||||
var circuitBoardBody: item.PlatineBody = null
|
var circuitBoardBody: item.CircuitBoard = null
|
||||||
var circuitBoard: item.Platine = null
|
var circuitBoard: item.PrintedCircuitBoard = null
|
||||||
var ironCutter: item.IronCutter = null
|
var ironCutter: item.IronCutter = null
|
||||||
var chip1, chip2, chip3: item.Chip = null
|
var chip1, chip2, chip3: item.Chip = null
|
||||||
var numPad: item.Numpad = null
|
var numPad: item.Numpad = null
|
||||||
@ -76,8 +76,8 @@ object Items {
|
|||||||
card1 = new item.Card(multi, 0)
|
card1 = new item.Card(multi, 0)
|
||||||
card2 = new item.Card(multi, 1)
|
card2 = new item.Card(multi, 1)
|
||||||
card3 = new item.Card(multi, 2)
|
card3 = new item.Card(multi, 2)
|
||||||
circuitBoardBody = new item.PlatineBody(multi)
|
circuitBoardBody = new item.CircuitBoard(multi)
|
||||||
circuitBoard = new item.Platine(multi)
|
circuitBoard = new item.PrintedCircuitBoard(multi)
|
||||||
ironCutter = new item.IronCutter(multi)
|
ironCutter = new item.IronCutter(multi)
|
||||||
|
|
||||||
|
|
||||||
|
6
li/cil/oc/common/item/CircuitBoard.scala
Normal file
6
li/cil/oc/common/item/CircuitBoard.scala
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
package li.cil.oc.common.item
|
||||||
|
|
||||||
|
|
||||||
|
class CircuitBoard (val parent: Delegator) extends Delegate {
|
||||||
|
val unlocalizedName = "CircuitBoard"
|
||||||
|
}
|
@ -1,6 +0,0 @@
|
|||||||
package li.cil.oc.common.item
|
|
||||||
|
|
||||||
|
|
||||||
class Platine (val parent: Delegator) extends Delegate {
|
|
||||||
val unlocalizedName = "Platine"
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
package li.cil.oc.common.item
|
|
||||||
|
|
||||||
|
|
||||||
class PlatineBody (val parent: Delegator) extends Delegate {
|
|
||||||
val unlocalizedName = "PlatineBody"
|
|
||||||
}
|
|
6
li/cil/oc/common/item/PrintedCircuitBoard.scala
Normal file
6
li/cil/oc/common/item/PrintedCircuitBoard.scala
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
package li.cil.oc.common.item
|
||||||
|
|
||||||
|
|
||||||
|
class PrintedCircuitBoard (val parent: Delegator) extends Delegate {
|
||||||
|
val unlocalizedName = "PrintedCircuitBoard"
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user