2024-09-15 14:45:24 +02:00
|
|
|
#import "lib/libepi.typ"
|
|
|
|
|
2024-09-15 19:57:15 +02:00
|
|
|
// Update version after each meaningful change
|
|
|
|
#let version = "0.3"
|
|
|
|
|
2024-09-15 15:27:23 +02:00
|
|
|
#set document(title: "Fiche EPI de HackENS", author: "cst1")
|
2024-09-15 19:33:31 +02:00
|
|
|
#set text(font: "Liberation Sans")
|
2024-09-15 15:27:23 +02:00
|
|
|
|
2024-09-15 14:45:24 +02:00
|
|
|
#let fiches = (
|
2024-09-15 19:57:15 +02:00
|
|
|
libepi.card(name: "Défonceuse",
|
|
|
|
protection_items: (libepi.Hearing, libepi.Shield),
|
|
|
|
forbidden_items: (),
|
2024-09-15 20:07:10 +02:00
|
|
|
referent: ("cst1",),
|
2024-09-15 19:57:15 +02:00
|
|
|
instructions: "truc truc truc",
|
|
|
|
min_help: 1
|
|
|
|
),
|
2024-09-15 15:27:23 +02:00
|
|
|
|
2024-09-15 19:57:15 +02:00
|
|
|
libepi.card(name: "Ponceuse à bande",
|
|
|
|
protection_items: (libepi.Hearing, libepi.Glasses, libepi.Mask),
|
|
|
|
forbidden_items: (),
|
|
|
|
instructions: [
|
|
|
|
- Vérifier l'état de la bande. Si elle est trop usée, la changer.
|
|
|
|
- Allumer la ponceuse
|
|
|
|
- Toujours caler la pièce à poncer contre le bloqueur métallique pour la maintenir en place
|
|
|
|
],
|
|
|
|
min_help: 0,
|
|
|
|
),
|
2024-09-15 15:27:23 +02:00
|
|
|
|
2024-09-15 19:57:15 +02:00
|
|
|
libepi.card(name: "Perceuse à colonne",
|
|
|
|
protection_items: (libepi.Glasses,),
|
|
|
|
forbidden_items: (libepi.NoGloves,),
|
|
|
|
instructions: [],
|
|
|
|
warning: [Ne surtout pas mettre de gants, ils risqueraient d'être emportés
|
2024-09-15 20:07:10 +02:00
|
|
|
avec les mains dans la mêche.]
|
|
|
|
),
|
|
|
|
|
|
|
|
libepi.card(name: "CNC",
|
|
|
|
protection_items: (libepi.Hearing, libepi.Glasses,),
|
|
|
|
forbidden_items: (),
|
|
|
|
referent: ("Sel", "Rémy"),
|
|
|
|
instructions: [],
|
|
|
|
warning: []
|
|
|
|
),
|
|
|
|
|
|
|
|
libepi.card(name: "Imprimante 3D",
|
|
|
|
protection_items: (),
|
|
|
|
forbidden_items: (),
|
|
|
|
referent: ("Sel", "Rémy"),
|
|
|
|
instructions: [
|
|
|
|
- Allumer la hotte de l'imprimante
|
|
|
|
],
|
|
|
|
//warning: []
|
2024-09-15 19:57:15 +02:00
|
|
|
),
|
2024-09-20 18:37:43 +02:00
|
|
|
|
|
|
|
libepi.card(name: "Fer à souder",
|
|
|
|
protection_items: (),
|
|
|
|
forbidden_items: (),
|
|
|
|
referent: ("Sel",),
|
|
|
|
instructions: [
|
|
|
|
- Il est recommandé de l'utiliser avec les "mains à souder" et la mini-hotte
|
|
|
|
- Température: *300°C* conviennent, pas besoin de chauffer plus fort.
|
|
|
|
- Après utlisation, laisser une *bille de soudure* sur le bout de la panne pour prévenir son *odxydation*.
|
|
|
|
],
|
|
|
|
//warning: []
|
|
|
|
),
|
2024-09-15 14:45:24 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
#show: doc => [
|
2024-09-15 19:57:15 +02:00
|
|
|
#libepi.generate_cards(version, fiches)
|
2024-09-15 14:45:24 +02:00
|
|
|
]
|