-
Notifications
You must be signed in to change notification settings - Fork 15
Titles and modifications on ships instead of pilots? #18
Description
This is a rules question that has yet to be answered, but: how many titles and modifications do multisection Huge ships get? By the rules, each "ship" (not pilot card) gets one title and one modification.
The current XWS implementation allows us to specify titles and mods on a per-pilot card basis. However, for multisection ships, this implies that each section can have its own title and mod. Previously this wasn't an issue, as titles were (and still are) limited to a specific ship section (e.g. "Raider-class Corvette Aft Section only") and the only Huge ship mod was Combat Retrofit which could only be equipped to the GR-75.
However, we now have Automated Protocols and Optimized Generators, which have no such restriction. As it stands, we could have this:
{
"pilots": [
{
"multisection_id": 0,
"ship": "raiderclasscorvette",
"name": "raiderclasscorvettefore",
"upgrades": {
"mod": [ "automatedprotocols" ]
}
},
{
"multisection_id": 0,
"ship": "raiderclasscorvette",
"name": "raiderclasscorvetteaft",
"upgrades": {
"mod": [ "optimizedgenerators" ]
}
},
]
}Thoughts on how to handle this? Should we just wait until we get an official ruling on this?