1
0
Fork 0

[golang] implement shipyards visits

This commit is contained in:
Julien Dessaux 2025-02-17 00:40:43 +01:00
parent 3cae67aea4
commit bd2fb50c81
Signed by: adyxax
GPG key ID: F92E51B86E07177E
15 changed files with 299 additions and 45 deletions

View file

@ -0,0 +1,35 @@
package model
import "time"
type Shipyard struct {
ModificationFee int `json:"modificationFee"`
Symbol string `json:"symbol"`
ShipTypes []CommonType `json:"shipTypes"`
Transactions []ShipyardTransaction `json:"transactions"`
Ships []ShipyardShip `json:"ships"`
}
type ShipyardShip struct {
Activity string `json:"activity"`
// crew
//Description string `json:"description"`
// engine
// frame
// modules
// mounts
//Name string `json:"name"`
PurchasePrice int `json:"purchasePrice"`
// reactor
Supply string `json:"supply"`
Type string `json:"type"`
}
type ShipyardTransaction struct {
AgentSymbol string `json:"agentSymbol"`
Price int `json:"price"`
ShipSymbol string `json:"shipSymbol"`
ShipType string `json:"shipType"`
Timestamp time.Time `json:"timestamp"`
WaypointSymbol string `json:"waypointSymbol"`
}