import UIKit
import CoreData
class ImportTestDIM: ImportProtocol {
var moc: NSManagedObjectContext
required init(viewContext: NSManagedObjectContext) {
moc = viewContext
}
func importDIM() {
// MARK: - DIM
let dim = addDIM(name: "Test DIM", franchise: "Digimon", imageName: "TestDIM-Header", dimType: "Vital Bracelet BE", id: "667", eggImage: "TestDIM-Egg", dimImage: "TestDIM-DIM", adventureIcon: "TestDIM-Adventure")
// MARK: - Digimon
// MARK: - Stage 1
let _ = addDigimon(name: "Chibomon", dim: dim, stage: 1, imageName: "chibomon", imageNameSplash: "chibomon-splash", type: free, activityType: "Normal", characterID: 0)
// MARK: - Stage 2
let _ = addDigimon(name: "DemiVeemon", dim: dim, stage: 2, imageName: "demiveemon", imageNameSplash: "demiveemon-splash", type: free, activityType: "Normal", characterID: 1)
// MARK: - Stage 3
let _ = addDigimon(name: "Veemon", dim: dim, stage: 3, imageName: "veemon", imageNameSplash: "veemon-splash", type: free, activityType: "Active", characterID: 5)
// MARK: - Stage 4
let _ = addDigimon(name: "ExVeemon", dim: dim, stage: 4, imageName: "exveemon", imageNameSplash: "exveemon-splash", type: free, activityType: "Active", characterID: 3)
let _ = addDigimon(name: "Growlmon", dim: dim, stage: 4, imageName: "growlmon", imageNameSplash: "growlmon-splash", type: virus, activityType: "Active", characterID: 9)
let _ = addDigimon(name: "Icemon", dim: dim, stage: 4, imageName: "icemon", imageNameSplash: "icemon-splash", type: data, activityType: "Indoor", characterID: 11)
let _ = addDigimon(name: "Stingmon", dim: dim, stage: 4, imageName: "stingmon", imageNameSplash: "stingmon-splash", type: free, activityType: "Active", characterID: 7)
// MARK: - Stage 5
let _ = addDigimon(name: "Dinobeemon", dim: dim, stage: 5, imageName: "dinobeemon", imageNameSplash: "dinobeemon-splash", type: free, activityType: "Normal", characterID: 2)
let _ = addDigimon(name: "Mihiramon", dim: dim, stage: 5, imageName: "mihiramon", imageNameSplash: "mihiramon-splash", type: data, activityType: "Normal", characterID: 10)
let _ = addDigimon(name: "Paildramon", dim: dim, stage: 5, imageName: "paildramon", imageNameSplash: "paildramon-splash", type: free, activityType: "Normal", characterID: 6)
// MARK: - Stage 6
let _ = addDigimon(name: "Imperialdramon: Dragon Mode", dim: dim, stage: 6, imageName: "imperialdramondragon_mode", imageNameSplash: "imperialdramondragon_mode-splash", type: free, activityType: "Normal", adventureMode: true, adventureStage: 1, characterID: 0, obtainable: false)
let _ = addDigimon(name: "Imperialdramon: Fighter Mode", dim: dim, stage: 6, imageName: "imperialdramonfighter_mode", imageNameSplash: "imperialdramonfighter_mode-splash", type: free, activityType: "Stotic", characterID: 8)
// MARK: - Evolutions
// MARK: - Adventure Mode
}
}