Hello from MCP server

List Files | Just Commands | Repo | Logs

← back |
export const spaceship = [
  {
    collection: "tierSets",
    operation: "create",
    data: {
      name: "Good/Better/Best",
      refId: "goodBetterBest",
    },
  },
  {
    collection: "tiers",
    operation: "create",
    data: {
      name: "Good",
      rank: 3,
      refId: "good",
      refs: [
        {
          collection: "tierSets",
          refIds: ["goodBetterBest"],
        },
      ],
    },
  },
  {
    collection: "tiers",
    operation: "create",
    data: {
      name: "Better",
      refId: "better",
      rank: 2,
      refs: [
        {
          collection: "tierSets",
          refIds: ["goodBetterBest"],
        },
      ],
    },
  },
  {
    collection: "tiers",
    operation: "create",
    data: {
      name: "Best",
      refId: "best",
      rank: 1,
      refs: [
        {
          collection: "tierSets",
          refIds: ["goodBetterBest"],
        },
      ],
    },
  },
  {
    collection: "menus",
    operation: "create",
    data: {
      name: "Warp Drive Calibration",
      refId: "warpDriveCalibration",
      refs: [
        {
          collection: "books",
          refIds: ["spaceshipBook"],
        },
      ],
    },
  },
  {
    collection: "costsTime",
    operation: "create",
    data: {
      name: "calibrateTimeGood",
      refId: "calibrateTimeGood",
      hours: 3,
    },
  },
  {
    collection: "costsTime",
    operation: "create",
    data: {
      name: "calibrateTimeBetter",
      refId: "calibrateTimeBetter",
      hours: 5,
    },
  },
  {
    collection: "costsTime",
    operation: "create",
    data: {
      name: "calibrateTimeBest",
      refId: "calibrateTimeBest",
      hours: 7,
    },
  },
  {
    collection: "costsMaterial",
    operation: "create",
    data: {
      name: "standardScanner",
      refId: "standardScanner",
      quantity: 2000,
    },
  },
  {
    collection: "costsMaterial",
    operation: "create",
    data: {
      name: "precisionScanner",
      refId: "precisionScanner",
      quantity: 4000,
    },
  },
  {
    collection: "costsMaterial",
    operation: "create",
    data: {
      name: "quantumScanner",
      refId: "quantumScanner",
      quantity: 9000,
    },
  },
  {
    collection: "costsMaterial",
    operation: "create",
    data: {
      name: "fluxStabilizer",
      refId: "fluxStabilizer",
      quantity: 2000,
    },
  },
  {
    collection: "costsMaterial",
    operation: "create",
    data: {
      name: "phaseSyncCrystals",
      refId: "phaseSyncCrystals",
      quantity: 1400,
    },
  },
  {
    collection: "offers",
    operation: "create",
    data: {
      name: "Galactic Calibration",
      refId: "galacticCalibration",
      refs: [
        { collection: "menus", refIds: ["warpDriveCalibration"] },
        {
          collection: "costsTime",
          refIds: ["calibrateTimeGood"],
        },
        {
          collection: "costsMaterial",
          refIds: ["standardScanner", "fluxStabilizer"],
        },
      ],
    },
  },
  {
    collection: "offers",
    operation: "create",
    data: {
      name: "Atomic Calibration",
      refId: "atomicCalibration",
      refs: [
        { collection: "menus", refIds: ["warpDriveCalibration"] },
        {
          collection: "costsTime",
          refIds: ["calibrateTimeBetter"],
        },

        {
          collection: "costsMaterial",
          refIds: ["precisionScanner", "fluxStabilizer"],
        },
      ],
    },
  },
  {
    collection: "offers",
    operation: "create",
    data: {
      name: "Quantum Calibration",
      refId: "quantumCalibration",
      refs: [
        { collection: "menus", refIds: ["warpDriveCalibration"] },
        {
          collection: "costsTime",
          refIds: ["calibrateTimeBest"],
        },
        {
          collection: "costsMaterial",
          refIds: ["quantumScanner", "fluxStabilizer", "phaseSyncCrystals"],
        },
      ],
    },
  },
  {
    collection: "menuTiers",
    operation: "create",
    data: {
      refId: "calibrateGood",
      refs: [
        { collection: "menus", refIds: ["warpDriveCalibration"] },
        { collection: "offers", refIds: ["galacticCalibration"] },
        { collection: "tiers", refIds: ["good"] },
      ],
    },
  },
  {
    collection: "menuTiers",
    operation: "create",
    data: {
      refId: "calibrateBetter",
      refs: [
        { collection: "menus", refIds: ["warpDriveCalibration"] },
        { collection: "offers", refIds: ["atomicCalibration"] },
        { collection: "tiers", refIds: ["better"] },
      ],
    },
  },
  {
    collection: "menuTiers",
    operation: "create",
    data: {
      refId: "calibrateBest",
      refs: [
        { collection: "menus", refIds: ["warpDriveCalibration"] },
        { collection: "offers", refIds: ["quantumCalibration"] },
        { collection: "tiers", refIds: ["best"] },
      ],
    },
  },
];