Skip to content

Instantly share code, notes, and snippets.

@bulini
Last active December 14, 2023 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bulini/9da14a3600aa4a53072537b0351d153e to your computer and use it in GitHub Desktop.
Save bulini/9da14a3600aa4a53072537b0351d153e to your computer and use it in GitHub Desktop.
const domande = [
{
question:
"1 Domanda profilo logico?",
answers: [
{
answer: "SI",
tags: [],
profile: ["logico"],
value: 1
},
{
answer: "NO",
tags: [],
profile: ["logico"],
value: 0
}
],
questions: [
{
question: 'Domanda verifica-rinforzo 1 Logico',
answers: [
{
answer: "molto logico",
value: 4,
tags: [],
profile: ["logico"],
},
{
answer: "poco logico",
value: 2,
tags: [],
profile: ["logico"],
},
{
answer: "per niente logico",
value: 0,
tags: [],
profile: ["logico"],
},
]
}
],
dynamic_answer: '1 risposta dinamica profilo logico'
},
{
question:
"1 Domanda profilo analista?",
answers: [
{
answer: "SI",
tags: [],
profile: ["analista"],
value: 1
},
{
answer: "NO",
tags: [],
profile: ["analista"],
value: 0
},
],
questions: [
{
question: 'Domanda verifica-rinforzo 1 analista',
answers: [
{
answer: "molto analista",
value: 4,
tags: [],
profile: ["analista"],
},
{
answer: "poco analista",
value: 2,
tags: [],
profile: ["analista"],
},
{
answer: "per niente analista",
value: 0,
tags: [],
profile: ["analista"],
},
]
}
],
dynamic_answer: '1 risposta dinamica profilo analista'
},
{
question:
"1 Domanda profilo pioniere?",
answers: [
{
answer: "SI",
tags: [],
profile: ["pioniere"],
value: 1
},
{
answer: "NO",
tags: [],
profile: ["pioniere"],
value: 0
},
],
questions: [
{
question: 'Domanda verifica-rinforzo 1 pioniere',
answers: [
{
answer: "molto pioniere",
value: 4,
tags: [],
profile: ["pioniere"],
},
{
answer: "poco pioniere",
value: 2,
tags: [],
profile: ["pioniere"],
},
{
answer: "per niente pioniere",
value: 0,
tags: [],
profile: ["pioniere"],
},
]
}
],
dynamic_answer: '1 risposta dinamica profilo pioniere'
},
{
question:
"1 Domanda profilo stratega?",
answers: [
{
answer: "SI",
tags: [],
profile: ["stratega"],
value: 1
},
{
answer: "NO",
tags: [],
profile: ["stratega"],
value: 0
},
],
questions: [
{
question: 'Domanda verifica-rinforzo 1 stratega',
answers: [
{
answer: "molto stratega",
value: 4,
tags: [],
profile: ["stratega"],
},
{
answer: "poco stratega",
value: 2,
tags: [],
profile: ["stratega"],
},
{
answer: "per niente stratega",
value: 0,
tags: [],
profile: ["stratega"],
},
]
}
],
dynamic_answer: '1 risposta dinamica profilo stratega'
},
{
question:
"1 Domanda profilo diplomatico?",
answers: [
{
answer: "SI",
tags: [],
profile: ["diplomatico"],
value: 1
},
{
answer: "NO",
tags: [],
profile: ["diplomatico"],
value: 0
},
],
questions: [
{
question: 'Domanda verifica-rinforzo 1 diplomatico',
answers: [
{
answer: "molto diplomatico",
value: 4,
tags: [],
profile: ["diplomatico"],
},
{
answer: "poco diplomatico",
value: 2,
tags: [],
profile: ["diplomatico"],
},
{
answer: "per niente diplomatico",
value: 0,
tags: [],
profile: ["diplomatico"],
},
]
}
],
dynamic_answer: '1 risposta dinamica profilo diplomatico'
},
{
question:
"1 Domanda profilo condottiero?",
answers: [
{
answer: "SI",
tags: [],
profile: ["condottiero"],
value: 1
},
{
answer: "NO",
tags: [],
profile: ["condottiero"],
value: 0
},
],
},
{
question:
"1 Domanda profilo bardo?",
answers: [
{
answer: "SI",
tags: [],
profile: ["bardo"],
value: 1
},
{
answer: "NO",
tags: [],
profile: ["bardo"],
value: 0
},
],
},
{
question:
"1 Domanda profilo creativo?",
answers: [
{
answer: "SI",
tags: [],
profile: ["creativvo"],
value: 1
},
{
answer: "NO",
tags: [],
profile: ["creativo"],
value: 0
},
],
},
];
export default domande;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment